summaryrefslogtreecommitdiff
path: root/cli/tests/integration/run_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-03-11 11:43:45 -0500
committerGitHub <noreply@github.com>2023-03-11 11:43:45 -0500
commit8db853514caae431a0ce91360d854c1b7f3c405f (patch)
tree4173976ce6c836b715af22c9aeb9f336debb8544 /cli/tests/integration/run_tests.rs
parente4430400ced48529730a8752c547b613a23c76ce (diff)
fix(check): regression where config "types" entries caused type checking errors (#18124)
Closes #18117 Closes #18121 (this is just over 10ms faster in a directory one up from the root folder) cc @nayeemrmn
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r--cli/tests/integration/run_tests.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs
index c3a2c45a7..0e1516cc3 100644
--- a/cli/tests/integration/run_tests.rs
+++ b/cli/tests/integration/run_tests.rs
@@ -826,15 +826,15 @@ itest!(config {
itest!(config_types {
args:
- "run --reload --quiet --config run/config_types/tsconfig.json run/config_types/main.ts",
+ "run --reload --quiet --check=all --config run/config_types/tsconfig.json run/config_types/main.ts",
output: "run/config_types/main.out",
});
itest!(config_types_remote {
- http_server: true,
- args: "run --reload --quiet --config run/config_types/remote.tsconfig.json run/config_types/main.ts",
- output: "run/config_types/main.out",
- });
+ http_server: true,
+ args: "run --reload --quiet --check=all --config run/config_types/remote.tsconfig.json run/config_types/main.ts",
+ output: "run/config_types/main.out",
+});
itest!(empty_typescript {
args: "run --reload --check run/empty.ts",