()
| 124 | } |
| 125 | |
| 126 | export const runDevTestCli = async (): Promise<number> => { |
| 127 | return runWithSpinner('Running CLI tests...', 'CLI tests completed', 'CLI tests failed', () => |
| 128 | runCommand('pnpm', ['run', 'test:cli']), |
| 129 | ) |
| 130 | } |
| 131 | |
| 132 | export const runDevTestIntegration = async (): Promise<number> => { |
| 133 | return runWithSpinner( |
no test coverage detected