From 125184e4219c1fba5d2105cf6de81fac14c41124 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Wed, 10 Aug 2022 12:59:37 -0400 Subject: [PATCH] chore(tests): remove unused run of typings (#6326) * chore(tests): remove unused run of typings * chore(build): remove unused script from package.json --- package.json | 1 - tests/run_all_tests.sh | 4 ---- 2 files changed, 5 deletions(-) diff --git a/package.json b/package.json index da496d750..51a5340ea 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,6 @@ "test:generators": "tests/scripts/run_generators.sh", "test:mocha:interactive": "http-server ./ -o /tests/mocha/index.html -c-1", "test:compile:advanced": "gulp buildAdvancedCompilationTest --debug", - "typings": "gulp typings", "updateGithubPages": "gulp gitUpdateGithubPages" }, "main": "./index.js", diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh index 1d169be4f..36ae667b7 100755 --- a/tests/run_all_tests.sh +++ b/tests/run_all_tests.sh @@ -58,10 +58,6 @@ fi # closure compiler warnings / errors. run_test_command "build-debug" "npm run build-debug" -# Generate TypeScript typings and ensure there are no errors. -# TODO(5621): Re-enable this test once typings generation is fixed. -# run_test_command "typings" "npm run typings" - # Run renaming validation test. run_test_command "renamings" "tests/migration/validate-renamings.js"