Skip to content

Commit

Permalink
Temporarily skip switchable runtime test on deploy (#40700)
Browse files Browse the repository at this point in the history
We can re-enable this after the necessary support has been landed. 

x-ref:
https://github.com/vercel/next.js/actions/runs/3086118218/jobs/4990617168
  • Loading branch information
ijjk committed Sep 20, 2022
1 parent 980095d commit e704060
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/e2e/switchable-runtime/index.test.ts
Expand Up @@ -37,6 +37,12 @@ describe('Switchable runtime', () => {
let next: NextInstance
let context

if ((global as any).isNextDeploy) {
// TODO-APP: re-enable after Prerenders are handled on deploy
it('should skip for deploy temporarily', () => {})
return
}

beforeAll(async () => {
next = await createNext({
files: {
Expand Down

0 comments on commit e704060

Please sign in to comment.