diff --git a/cypress/integration/default/dynamic-routes.spec.ts b/cypress/integration/default/dynamic-routes.spec.ts index 07375209dd..31c2177695 100644 --- a/cypress/integration/default/dynamic-routes.spec.ts +++ b/cypress/integration/default/dynamic-routes.spec.ts @@ -17,7 +17,7 @@ describe('Static Routing', () => { it('renders correct page via ODB on a static route', () => { cy.request({ url: '/getStaticProps/with-revalidate/', headers: { 'x-nf-debug-logging': '1' } }).then((res) => { expect(res.status).to.eq(200) - expect(res.headers).to.have.property('x-nf-render-mode', 'odb ttl=1') + expect(res.headers).to.have.property('x-nf-render-mode', 'odb ttl=60') expect(res.body).to.contain('Dancing with the Stars') }) })