Skip to content

Commit 45255c9

Browse files
committed
fix: tweak sleep time
1 parent 1d3cefd commit 45255c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playground/node/node.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
77

88
test('node integration test', async () => {
99
const child = spawn('npx', ['tsx', './index.ts'], { cwd: process.cwd(), stdio: 'inherit' })
10-
await sleep(1000)
10+
await sleep(2000)
1111

1212
const req = new Request('http://localhost:8123')
1313
req.headers.set('accept-language', 'en-US,en;q=0.9,ja;q=0.8')

0 commit comments

Comments
 (0)