diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-10 01:06:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-10 01:06:47 +0100 |
| commit | 68119e1d7ed23421ccdcba20532ebe9ae3df9f18 (patch) | |
| tree | 455dd170024112e3388adc27ebebb119b0ecda38 /cli/tests | |
| parent | dad8036766dca3417b79858b9a04d90447f88605 (diff) | |
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".
Diffstat (limited to 'cli/tests')
| -rw-r--r-- | cli/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |
