diff --git a/aio/package.json b/aio/package.json index c3f7966a5d..2cd813ae14 100644 --- a/aio/package.json +++ b/aio/package.json @@ -45,7 +45,7 @@ "docs-watch": "node tools/transforms/authors-package/watchr.js", "docs-lint": "eslint --ignore-path=\"tools/transforms/.eslintignore\" tools/transforms", "docs-test": "node tools/transforms/test.js", - "deployment-config-test": "jasmine-ts tests/deployment-config/unit/**/*.spec.ts", + "redirects-test": "jasmine-ts tests/deployment-config/unit/**/*.spec.ts", "firebase-utils-test": "jasmine-ts tools/firebase-test-utils/*.spec.ts", "tools-lint": "tslint -c \"tools/tslint.json\" \"tools/firebase-test-utils/**/*.ts\"", "tools-test": "./scripts/deploy-to-firebase.test.sh && yarn docs-test && yarn boilerplate:test && jasmine tools/ng-packages-installer/index.spec.js && yarn firebase-utils-test", @@ -158,4 +158,4 @@ "xregexp": "^4.0.0", "yargs": "^7.0.2" } -} \ No newline at end of file +} diff --git a/scripts/ci/test-aio.sh b/scripts/ci/test-aio.sh index 4dc95fd7ff..2db2b30b45 100755 --- a/scripts/ci/test-aio.sh +++ b/scripts/ci/test-aio.sh @@ -37,10 +37,10 @@ source ${thisDir}/_travis-fold.sh yarn e2e-prod travisFoldEnd "test.aio.e2e" - # Test Firebase redirects - travisFoldStart "test.aio.deployment-config" - yarn deployment-config-test - travisFoldEnd "test.aio.deployment-config" + # Run unit tests for Firebase redirects + travisFoldStart "test.aio.redirects" + yarn redirects-test + travisFoldEnd "test.aio.redirects" # Run unit tests for aio/aio-builds-setup travisFoldStart "test.aio.aio-builds-setup"