From 320958f29869dc87eb4540adc1a06fada3f137d4 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Thu, 21 Jun 2018 15:22:55 +0200 Subject: [PATCH] Fix test --- test/integration/production/test/index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/production/test/index.test.js b/test/integration/production/test/index.test.js index febc553bec91d..316293b42529b 100644 --- a/test/integration/production/test/index.test.js +++ b/test/integration/production/test/index.test.js @@ -68,7 +68,7 @@ describe('Production Usage', () => { resources.push(url + 'webpack/' + buildManifest[chunkKey]) // test main.js - const mainJsKey = Object.keys(buildManifest).find((x) => x === 'main.js') + const mainJsKey = Object.keys(buildManifest).find((x) => x === 'static/commons/main') resources.push(url + buildManifest[mainJsKey]) const responses = await Promise.all(resources.map((resource) => fetch(resource)))