Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/e2e/app-dir/fallback-shells/fallback-shells.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('fallback-shells', () => {
}

// If we didn't use the fallback shell, then we didn't postpone the
// response and therefore shouldn't have sent the postponed header.
// response, and therefore shouldn't have sent the postponed header.
expect(headers['x-nextjs-postponed']).not.toBe('1')
})
})
Expand Down
2 changes: 1 addition & 1 deletion test/lib/next-modes/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ export class NextInstance {
const responsePromise = new Promise<Response>((resolve, reject) => {
const timer = setTimeout(() => {
reject(`Timed out waiting for the response of ${url}`)
}, 10_000)
}, 30_000)

resolveResponse = (response: Response) => {
clearTimeout(timer)
Expand Down
Loading