From 68119e1d7ed23421ccdcba20532ebe9ae3df9f18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 10 Mar 2020 01:06:47 +0100 Subject: reorg: move js runtime tests to cli/js/tests/ (#4250) All Deno runtime test files were moved to cli/js/tests/ directory. It makes a clear distinction that cli/js/tests/ contains code that is run under Deno runtime as opposed to code in cli/js/ which is used to create bundle and snapshot with "deno_typescript". --- cli/tests/integration_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests') diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 20a2a983b..1e8274294 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -274,7 +274,7 @@ fn js_unit_tests() { .arg("--reload") .arg("--allow-run") .arg("--allow-env") - .arg("cli/js/unit_test_runner.ts") + .arg("cli/js/tests/unit_test_runner.ts") .spawn() .expect("failed to spawn script"); let status = deno.wait().expect("failed to wait for the child process"); -- cgit v1.2.3