summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-09-27 19:21:11 +0100
committerGitHub <noreply@github.com>2020-09-27 14:21:11 -0400
commit8cbf0e75b2a7cf0e86608da0cf780b871b582deb (patch)
treea719cb9a435c6f73b33f4fa39bf9b9caa60d87ed /cli/main.rs
parent94dcef714d09e09cd7eb777396f954ac3d24b161 (diff)
fix: Use $deno$test.ts instead of .deno.test.ts (#7717)
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 94afbaeba..0acf74ade 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -559,7 +559,7 @@ async fn test_command(
return Ok(());
}
- let test_file_path = cwd.join(".deno.test.ts");
+ let test_file_path = cwd.join("$deno$test.ts");
let test_file_url =
Url::from_file_path(&test_file_path).expect("Should be valid file url");
let test_file = test_runner::render_test_file(