Skip to content

Commit d6ec745

Browse files
authored
Merge branch 'main' into tn/nextjs-v13.3.4
2 parents 4f51249 + c9ab983 commit d6ec745

File tree

12 files changed

+455
-208
lines changed

12 files changed

+455
-208
lines changed

cypress/e2e/default/api.cy.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ describe('API routes', () => {
66
})
77
})
88

9+
describe('Dynamic API routes', () => {
10+
it('are bundled correctly', () => {
11+
cy.request('/api/shows/1').then((response) => {
12+
expect(response.status).to.equal(200)
13+
})
14+
})
15+
})
16+
917
describe('Extended API routes', () => {
1018
it('returns HTTP 202 Accepted for background route', () => {
1119
cy.request('/api/hello-background').then((response) => {

0 commit comments

Comments
 (0)