From 4a840b3797df5b456c6d520243505cc30d9488be Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 24 Jun 2021 12:35:36 -0500 Subject: [PATCH] update test --- test/integration/basic/test/index.test.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/integration/basic/test/index.test.js b/test/integration/basic/test/index.test.js index e94c48e373f69..ee09fae3a2a02 100644 --- a/test/integration/basic/test/index.test.js +++ b/test/integration/basic/test/index.test.js @@ -20,16 +20,6 @@ describe('Basic Features', () => { context.server = await launchApp(join(__dirname, '../'), context.appPort, { env: { __NEXT_TEST_WITH_DEVTOOL: 1 }, }) - - // pre-build all pages at the start - await Promise.all([ - renderViaHTTP(context.appPort, '/process-env'), - - renderViaHTTP(context.appPort, '/hmr/about'), - renderViaHTTP(context.appPort, '/hmr/style'), - renderViaHTTP(context.appPort, '/hmr/contact'), - renderViaHTTP(context.appPort, '/hmr/counter'), - ]) }) afterAll(() => killApp(context.server))