diff --git a/integration/_payload-limits.json b/integration/_payload-limits.json index 893916586f..e49f67b030 100644 --- a/integration/_payload-limits.json +++ b/integration/_payload-limits.json @@ -8,6 +8,15 @@ } } }, + "cli-hello-world-ivy": { + "master": { + "uncompressed": { + "runtime": 1440, + "main": 507677, + "polyfills": 38390 + } + } + }, "hello_world__closure": { "master": { "uncompressed": { diff --git a/integration/run_tests.sh b/integration/run_tests.sh index afc2a72a4c..59f8d5f489 100755 --- a/integration/run_tests.sh +++ b/integration/run_tests.sh @@ -48,9 +48,9 @@ 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 $CI && ([[ $testDir == cli-hello-world ]] || [[ $testDir == hello_world__closure ]]); then - if [[ $testDir == cli-hello-world ]]; then + # Track payload size for cli-hello-world, cli-hello-world-ivy and hello_world__closure + if $CI && ([[ $testDir == cli-hello-world ]] || [[ $testDir == cli-hello-world-ivy ]] || [[ $testDir == hello_world__closure ]]); then + if ([[ $testDir == cli-hello-world ]] || [[ $testDir == cli-hello-world-ivy ]]); then yarn build fi