Skip to content

Commit 4e68b53

Browse files
committed
Fix bun typecheck by removing setTestTimeout
1 parent 413940c commit 4e68b53

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

cli/src/__tests__/e2e/full-stack.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Run with: bun test e2e/full-stack.test.ts
1313
*/
1414

15-
import { describe, test, expect, beforeAll, afterAll, setTestTimeout } from 'bun:test'
15+
import { describe, test, expect, beforeAll, afterAll } from 'bun:test'
1616

1717
import { isSDKBuilt } from '../test-utils'
1818
import { createE2ETestContext, sleep } from './test-cli-utils'
@@ -23,9 +23,6 @@ import type { E2ETestContext } from './test-cli-utils'
2323
const TIMEOUT_MS = 180000 // 3 minutes for e2e tests
2424
const sdkBuilt = isSDKBuilt()
2525

26-
// Allow long-running hooks and tests for full E2E flows
27-
setTestTimeout(TIMEOUT_MS)
28-
2926
function logSnapshot(label: string, text: string): void {
3027
console.log(`\n[E2E DEBUG] ${label}\n${'-'.repeat(40)}\n${text}\n${'-'.repeat(40)}\n`)
3128
}

0 commit comments

Comments
 (0)