From d4b46e271ad5b73530870a87f168a07891803a0c Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Wed, 31 Oct 2018 12:40:23 +0200 Subject: [PATCH] test: remove checks for non-existent directories in integration tests (#26869) PR Close #26869 --- integration/_payload-limits.json | 23 ----------------------- integration/run_tests.sh | 4 ++-- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/integration/_payload-limits.json b/integration/_payload-limits.json index 5f364d95a5..7b648fd402 100644 --- a/integration/_payload-limits.json +++ b/integration/_payload-limits.json @@ -15,29 +15,6 @@ "bundle": 178101 } } - }, - "hello_world__render3__closure": { - "master": { - "uncompressed": { - "bundle": 8153 - } - } - }, - "hello_world__render3__rollup": { - "master": { - "uncompressed": { - "bundle": 10129 - } - } - }, - "hello_world__render3__cli": { - "master": { - "uncompressed": { - "inline": 1447, - "main": 40513, - "polyfills": 60105 - } - } } } diff --git a/integration/run_tests.sh b/integration/run_tests.sh index ca35c2d444..7161ef53b1 100755 --- a/integration/run_tests.sh +++ b/integration/run_tests.sh @@ -48,8 +48,8 @@ for testDir in $(ls | grep -v node_modules) ; do yarn install --cache-folder ../$cache yarn test || exit 1 # Track payload size for cli-hello-world and hello_world__closure and the render3 tests - if [[ $testDir == cli-hello-world ]] || [[ $testDir == hello_world__closure ]] || [[ $testDir == hello_world__render3__closure ]] || [[ $testDir == hello_world__render3__rollup ]] || [[ $testDir == hello_world__render3__cli ]]; then - if [[ $testDir == cli-hello-world ]] || [[ $testDir == hello_world__render3__cli ]]; then + if [[ $testDir == cli-hello-world ]] || [[ $testDir == hello_world__closure ]]; then + if [[ $testDir == cli-hello-world ]]; then yarn build fi #if $CI; then