summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-03-11 21:54:53 +0100
committerGitHub <noreply@github.com>2020-03-11 21:54:53 +0100
commitb8fa3fd5e7dd906e5616bf2ab8ad6df3f74f244d (patch)
tree85addd5ed0b097f481d1c953bd0225efe3b5af24 /cli/tests/integration_tests.rs
parenta28fa2415f8ae6bad63469a0c9e4dce3197970f9 (diff)
move compiler API tests to integration tests (#4319)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 1e8274294..d5a3fb8c8 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -865,11 +865,16 @@ itest!(_026_redirect_javascript {
});
itest!(workers {
- args: "run --reload --allow-net workers_test.ts",
+ args: "test --reload --allow-net workers_test.ts",
http_server: true,
output: "workers_test.out",
});
+itest!(compiler_api {
+ args: "test --reload compiler_api_test.ts",
+ output: "compiler_api_test.out",
+});
+
itest!(_027_redirect_typescript {
args: "run --reload 027_redirect_typescript.ts",
output: "027_redirect_typescript.ts.out",