()
| 118 | } |
| 119 | |
| 120 | export const runDevTestUnit = async (): Promise<number> => { |
| 121 | return runWithSpinner('Running unit tests...', 'Unit tests completed', 'Unit tests failed', () => |
| 122 | runCommand('pnpm', ['run', 'test:unit']), |
| 123 | ) |
| 124 | } |
| 125 | |
| 126 | export const runDevTestCli = async (): Promise<number> => { |
| 127 | return runWithSpinner('Running CLI tests...', 'CLI tests completed', 'CLI tests failed', () => |
no test coverage detected