(s: Task)
| 3 | import { toArray } from '@vitest/utils/helpers' |
| 4 | |
| 5 | export function isTestCase(s: Task): s is Test { |
| 6 | return s.type === 'test' |
| 7 | } |
| 8 | |
| 9 | export function getTests(suite: Arrayable<Task>): Test[] { |
| 10 | const tests: Test[] = [] |
no outgoing calls
no test coverage detected