0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

fix: Use $deno$test.ts instead of .deno.test.ts (#7717)

This commit is contained in:
Nayeem Rahman 2020-09-27 19:21:11 +01:00 committed by GitHub
parent 94dcef714d
commit 8cbf0e75b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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(

View file

@ -222,7 +222,7 @@ stdout. In the future there will be support for `lcov` output too.
$ git clone git@github.com:denosaurs/deno_brotli.git && cd deno_brotli
$ deno test --coverage --unstable
Debugger listening on ws://127.0.0.1:9229/ws/5a593019-d185-478b-a928-ebc33e5834be
Check file:///home/deno/deno_brotli/.deno.test.ts
Check file:///home/deno/deno_brotli/$deno$test.ts
running 2 tests
test compress ... ok (26ms)
test decompress ... ok (13ms)