mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
test(std): ensure mod.ts modules have a test coverage (#7264)
This commit is contained in:
parent
94d38eee4c
commit
644190eed8
8 changed files with 7 additions and 0 deletions
|
@ -160,6 +160,7 @@ mod tests {
|
|||
format!("{}/file_server_test.ts", root_url),
|
||||
format!("{}/racing_server_test.ts", root_url),
|
||||
format!("{}/server_test.ts", root_url),
|
||||
format!("{}/test.ts", root_url),
|
||||
]
|
||||
.into_iter()
|
||||
.map(|f| Url::parse(&f).unwrap())
|
||||
|
|
1
std/async/test.ts
Normal file
1
std/async/test.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./mod.ts";
|
1
std/flags/test.ts
Normal file
1
std/flags/test.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./mod.ts";
|
1
std/http/test.ts
Normal file
1
std/http/test.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./mod.ts";
|
1
std/io/test.ts
Normal file
1
std/io/test.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./mod.ts";
|
1
std/mime/test.ts
Normal file
1
std/mime/test.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./mod.ts";
|
1
std/path/test.ts
Normal file
1
std/path/test.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./mod.ts";
|
Loading…
Add table
Reference in a new issue