We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dcb098 commit 660afd5Copy full SHA for 660afd5
cypress/integration/default/appdir.spec.ts
@@ -29,6 +29,15 @@ describe('appDir', () => {
29
})
30
31
32
+ it('returns HTML data for non-RSC requests to ISR pages', () => {
33
+ cy.request({
34
+ url: '/blog/erica/',
35
+ followRedirect: false,
36
+ }).then((response) => {
37
+ expect(response.headers).to.have.property('content-type', 'text/html; charset=utf-8')
38
+ })
39
40
+
41
it('returns RSC data for RSC requests to static pages', () => {
42
cy.request({
43
url: '/blog/erica/first-post/',
0 commit comments