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:
parent
94dcef714d
commit
8cbf0e75b2
2 changed files with 2 additions and 2 deletions
|
@ -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(
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue