We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa84505 commit 560ba2aCopy full SHA for 560ba2a
tests/legacy-cli/e2e/tests/packages/webpack/test-app.ts
@@ -8,7 +8,8 @@ export default function(skipCleaning: () => void) {
8
return Promise.resolve()
9
.then(() => createProjectFromAsset('webpack/test-app'))
10
.then(() => exec(normalize('node_modules/.bin/webpack-cli')))
11
- .then(() => expectFileSizeToBeUnder('dist/app.main.js', 470 * 1024))
+ // Note: these sizes are without Build Optimizer or any advanced optimizations in the CLI.
12
+ .then(() => expectFileSizeToBeUnder('dist/app.main.js', 483 * 1024))
13
.then(() => expectFileSizeToBeUnder('dist/0.app.main.js', 25 * 1024))
14
.then(() => expectFileSizeToBeUnder('dist/1.app.main.js', 2 * 1024))
15
// test resource urls without ./
0 commit comments