Skip to content

Commit

Permalink
Skip experimental undici test for deploy mode (#41006)
Browse files Browse the repository at this point in the history
Skipping for now as the test doesn't work correctly in deploy mode. 

x-ref:
https://github.com/vercel/next.js/actions/runs/3145043013/jobs/5112533360
  • Loading branch information
ijjk committed Sep 28, 2022
1 parent 78cb07a commit 3fa19f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/undici-fetch/index.test.ts
Expand Up @@ -5,7 +5,8 @@ import semver from 'semver'

if (
semver.lt(process.version, '16.8.0') ||
semver.gte(process.version, '18.0.0')
semver.gte(process.version, '18.0.0') ||
(global as any).isNextDeploy
) {
it('skipping for Node.js versions <16.8.0 and >18.0.0', () => {
expect(true).toBe(true)
Expand Down

0 comments on commit 3fa19f4

Please sign in to comment.