Skip to content

Commit

Permalink
test: more time on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jan 10, 2025
1 parent 897e0f8 commit e146d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/commands.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('commands', () => {
})

const testsToRun = Object.entries(tests).filter(([_, value]) => value !== 'todo')
it.each(testsToRun)(`%s`, (_, test) => (test as () => Promise<void>)(), { timeout: 50000 })
it.each(testsToRun)(`%s`, (_, test) => (test as () => Promise<void>)(), { timeout: isWindows ? 100000 : 50000 })

for (const [command, value] of Object.entries(tests)) {
if (value === 'todo') {
Expand Down

0 comments on commit e146d0a

Please sign in to comment.