···11import { type Arrayable, toArray } from '@vitest/utils'
22import type { Custom, Suite, Task, Test } from '../types'
3344-function isAtomTest(s: Task): s is Test | Custom {
44+export function isAtomTest(s: Task): s is Test | Custom {
55 return s.type === 'test' || s.type === 'custom'
66}
77