Skip to content

Commit

Permalink
chore(runner): export isAtomTest utility (#5905)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin authored Jun 17, 2024
1 parent 24e30c8 commit 0dda80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runner/src/utils/tasks.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { type Arrayable, toArray } from '@vitest/utils'
import type { Custom, Suite, Task, Test } from '../types'

function isAtomTest(s: Task): s is Test | Custom {
export function isAtomTest(s: Task): s is Test | Custom {
return s.type === 'test' || s.type === 'custom'
}

Expand Down

0 comments on commit 0dda80e

Please sign in to comment.