From f248050cb467eaed8d65428b8808254e26797cc5 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 25 Jul 2024 10:26:54 +1000 Subject: chore: use `@std` prefix for internal module specifiers (#24543) This change aims to replace all relative import specifiers targeted at `tests/util/std` with mapped ones (using a `deno.json` file). Towards updating the `std` git submodule. --- tests/integration/coverage_tests.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/integration/coverage_tests.rs') diff --git a/tests/integration/coverage_tests.rs b/tests/integration/coverage_tests.rs index 51b82af07..c5f8b1453 100644 --- a/tests/integration/coverage_tests.rs +++ b/tests/integration/coverage_tests.rs @@ -216,6 +216,8 @@ fn no_snaps_included(test_name: &str, extension: &str) { "--quiet".to_string(), "--allow-read".to_string(), format!("--coverage={}", tempdir), + "--config".to_string(), + "../config/deno.json".to_string(), format!("coverage/no_snaps_included/{test_name}_test.{extension}"), ]) .run(); @@ -256,6 +258,8 @@ fn no_tests_included(test_name: &str, extension: &str) { "--quiet".to_string(), "--allow-read".to_string(), format!("--coverage={}", tempdir), + "--config".to_string(), + "../config/deno.json".to_string(), format!("coverage/no_tests_included/{test_name}.test.{extension}"), ]) .run(); @@ -337,6 +341,8 @@ fn no_transpiled_lines() { "test".to_string(), "--quiet".to_string(), format!("--coverage={}", tempdir), + "--config".to_string(), + "../config/deno.json".to_string(), "coverage/no_transpiled_lines/".to_string(), ]) .run(); -- cgit v1.2.3