0
0
Fork 0
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:
Casper Beyer 2020-09-01 10:26:55 +08:00 committed by GitHub
parent 94d38eee4c
commit 644190eed8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 7 additions and 0 deletions

View file

@ -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
View file

@ -0,0 +1 @@
import "./mod.ts";

1
std/flags/test.ts Normal file
View file

@ -0,0 +1 @@
import "./mod.ts";

1
std/http/test.ts Normal file
View file

@ -0,0 +1 @@
import "./mod.ts";

1
std/io/test.ts Normal file
View file

@ -0,0 +1 @@
import "./mod.ts";

1
std/mime/test.ts Normal file
View file

@ -0,0 +1 @@
import "./mod.ts";

1
std/path/test.ts Normal file
View file

@ -0,0 +1 @@
import "./mod.ts";