Skip to content

Commit

Permalink
test(cli): increase test timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Dec 6, 2024
1 parent dfd6238 commit 038b610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@sanity/cli/test/shared/describe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const describeCliTest: typeof describe.skip =
cliUserToken && hasBuiltCli ? describe : describe.skip

// test.concurrent() runs even if the parent describe is skipped, so we need to wrap it as well
export const testConcurrent = (name: string, testFn: ProvidesCallback, timeout = 30000): void => {
export const testConcurrent = (name: string, testFn: ProvidesCallback, timeout = 60000): void => {
const tester = cliUserToken && hasBuiltCli ? test.concurrent : test.concurrent.skip
return tester(name, testFn, timeout)
}

0 comments on commit 038b610

Please sign in to comment.