From 94c885e891e0cbd4e2aaed6598849a95bebb5309 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Wed, 20 Jul 2022 18:25:16 -0500 Subject: [PATCH] Update edge blob asset e2e test --- test/e2e/edge-compiler-can-import-blob-assets/index.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/e2e/edge-compiler-can-import-blob-assets/index.test.ts b/test/e2e/edge-compiler-can-import-blob-assets/index.test.ts index 2e9668d185e0c..efe222b49943a 100644 --- a/test/e2e/edge-compiler-can-import-blob-assets/index.test.ts +++ b/test/e2e/edge-compiler-can-import-blob-assets/index.test.ts @@ -9,6 +9,12 @@ import type { MiddlewareManifest } from 'next/build/webpack/plugins/middleware-p describe('Edge Compiler can import asset assets', () => { let next: NextInstance + // TODO: remove after this is supported for deploy + if ((global as any).isNextDeploy) { + it('should skip for deploy for now', () => {}) + return + } + beforeAll(async () => { next = await createNext({ files: new FileRef(path.join(__dirname, './app')),