(cliFilters: string[], options: CliOptions)
| 267 | } |
| 268 | |
| 269 | async function watch(cliFilters: string[], options: CliOptions): Promise<void> { |
| 270 | options.watch = true |
| 271 | await start('test', cliFilters, options) |
| 272 | } |
| 273 | |
| 274 | async function run(cliFilters: string[], options: CliOptions): Promise<void> { |
| 275 | // "vitest run --watch" should still be watch mode |
no test coverage detected