Skip to content

Commit 6105a4a

Browse files
committed
Merge branch 'rs/isr-fix' of github.com:netlify/netlify-plugin-nextjs into rs/isr-fix
2 parents 9bd37d0 + e56bbd6 commit 6105a4a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cypress/e2e/default/dynamic-routes.cy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ describe('Dynamic Routing', () => {
6666
expect(res.status).to.eq(200)
6767
// expect 'odb' until https://github.com/netlify/pillar-runtime/issues/438 is fixed
6868
expect(res.headers).to.have.property('x-nf-render-mode', 'odb')
69-
expect(res.body).to.contain('Loading...')
69+
// expect 'Bitten' until the above is fixed and we can test for fallback 'Loading...' message
70+
expect(res.body).to.contain('Bitten')
7071
})
7172
})
7273
it('serves correct static file on a prerendered dynamic route with fallback: blocking', () => {

0 commit comments

Comments
 (0)