()
| 130 | } |
| 131 | |
| 132 | export const runDevTestIntegration = async (): Promise<number> => { |
| 133 | return runWithSpinner( |
| 134 | 'Running integration tests...', |
| 135 | 'Integration tests completed', |
| 136 | 'Integration tests failed', |
| 137 | () => runCommand('pnpm', ['run', 'test:integration']), |
| 138 | ) |
| 139 | } |
| 140 | |
| 141 | export const runDevTestPerfConnection = async (): Promise<number> => { |
| 142 | return runWithSpinner( |
no test coverage detected