Skip to content

Commit 518a6d6

Browse files
committed
test: update assertion for next >=15.0.4-canary.18
1 parent c938bb6 commit 518a6d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/simple-app.test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ test<FixtureTestContext>('Test that the simple next app is working', async (ctx)
8383

8484
const notFound = await invokeFunction(ctx, { url: 'route-resolves-to-not-found' })
8585
expect(notFound.statusCode).toBe(404)
86-
expect(notFound.body).toContain('NEXT_NOT_FOUND')
86+
expect(notFound.body).toContain(
87+
nextVersionSatisfies('>=15.0.4-canary.18') ? 'NEXT_HTTP_ERROR_FALLBACK' : 'NEXT_NOT_FOUND',
88+
)
8789

8890
const notExisting = await invokeFunction(ctx, { url: 'non-exisitng' })
8991
expect(notExisting.statusCode).toBe(404)

0 commit comments

Comments
 (0)