Skip to content

Commit

Permalink
test: fix stdin.test.ts pattern (#5001)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Jan 19, 2024
1 parent 7d0a469 commit a4ae574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/watch/test/stdin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ test('filter by filename', async () => {

vitest.write('math')

await vitest.waitForStdout('Pattern matches 1 results')
await vitest.waitForStdout('Pattern matches 1 result')
await vitest.waitForStdout('› math.test.ts')

vitest.write('\n')
Expand All @@ -64,7 +64,7 @@ test('filter by test name', async () => {
await vitest.waitForStdout('Input test name pattern')

vitest.write('sum')
await vitest.waitForStdout('Pattern matches 1 results')
await vitest.waitForStdout('Pattern matches 1 result')
await vitest.waitForStdout('› sum')

vitest.write('\n')
Expand Down

0 comments on commit a4ae574

Please sign in to comment.