diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-04-30 23:56:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 11:56:47 -0400 |
commit | abaec7a88e991188d885bede652f35d76ab4f340 (patch) | |
tree | bffb1edacdc4802ae99c84d0e2759d7552e3bb18 /cli/tests | |
parent | 6804b2f8891822f213f2e2a417f1659d2df77e02 (diff) |
fix(cli/tools/test): print module tests originate from (#10428)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/test/allow_all.out | 2 | ||||
-rw-r--r-- | cli/tests/test/allow_none.out | 2 | ||||
-rw-r--r-- | cli/tests/test/deno_test.out | 2 | ||||
-rw-r--r-- | cli/tests/test/deno_test_fail_fast.out | 2 | ||||
-rw-r--r-- | cli/tests/test/deno_test_only.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/test/deno_test_unresolved_promise.out | 2 | ||||
-rw-r--r-- | cli/tests/test/exit_sanitizer_test.out | 2 | ||||
-rw-r--r-- | cli/tests/test/quiet_test.out | 2 | ||||
-rw-r--r-- | cli/tests/test/test_finally_cleartimeout.out | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/cli/tests/test/allow_all.out b/cli/tests/test/allow_all.out index 3edb88d0f..3be26c6e0 100644 --- a/cli/tests/test/allow_all.out +++ b/cli/tests/test/allow_all.out @@ -1,5 +1,5 @@ [WILDCARD] -running 14 tests +running 14 tests from [WILDCARD] test read false ... ok [WILDCARD] test read true ... ok [WILDCARD] test write false ... ok [WILDCARD] diff --git a/cli/tests/test/allow_none.out b/cli/tests/test/allow_none.out index 6565a0800..96fb72278 100644 --- a/cli/tests/test/allow_none.out +++ b/cli/tests/test/allow_none.out @@ -1,5 +1,5 @@ [WILDCARD] -running 7 tests +running 7 tests from [WILDCARD] test read ... FAILED [WILDCARD] test write ... FAILED [WILDCARD] test net ... FAILED [WILDCARD] diff --git a/cli/tests/test/deno_test.out b/cli/tests/test/deno_test.out index 338f804ed..18ca1c4e8 100644 --- a/cli/tests/test/deno_test.out +++ b/cli/tests/test/deno_test.out @@ -1,5 +1,5 @@ [WILDCARD] -running 4 tests +running 4 tests from [WILDCARD] test fail1 ... FAILED [WILDCARD] test fail2 ... FAILED [WILDCARD] test success1 ... ok [WILDCARD] diff --git a/cli/tests/test/deno_test_fail_fast.out b/cli/tests/test/deno_test_fail_fast.out index 9fb82c1c6..ea0d9d369 100644 --- a/cli/tests/test/deno_test_fail_fast.out +++ b/cli/tests/test/deno_test_fail_fast.out @@ -1,5 +1,5 @@ [WILDCARD] -running 4 tests +running 4 tests from [WILDCARD] test fail1 ... FAILED [WILDCARD] failures: diff --git a/cli/tests/test/deno_test_only.ts.out b/cli/tests/test/deno_test_only.ts.out index 25a0b1a0c..75b5af29b 100644 --- a/cli/tests/test/deno_test_only.ts.out +++ b/cli/tests/test/deno_test_only.ts.out @@ -1,5 +1,5 @@ [WILDCARD] -running 1 tests +running 1 tests from [WILDCARD] test def ... ok ([WILDCARD]) test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 2 filtered out ([WILDCARD]) diff --git a/cli/tests/test/deno_test_unresolved_promise.out b/cli/tests/test/deno_test_unresolved_promise.out index e1ec640ab..249f1d687 100644 --- a/cli/tests/test/deno_test_unresolved_promise.out +++ b/cli/tests/test/deno_test_unresolved_promise.out @@ -1,4 +1,4 @@ -running 2 tests +running 2 tests from [WILDCARD] test unresolved promise ... test result: FAILED. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [WILDCARD] diff --git a/cli/tests/test/exit_sanitizer_test.out b/cli/tests/test/exit_sanitizer_test.out index 25df34b34..3161c45ab 100644 --- a/cli/tests/test/exit_sanitizer_test.out +++ b/cli/tests/test/exit_sanitizer_test.out @@ -1,5 +1,5 @@ Check [WILDCARD]/exit_sanitizer_test.ts -running 3 tests +running 3 tests from [WILDCARD] test exit(0) ... FAILED ([WILDCARD]) test exit(1) ... FAILED ([WILDCARD]) test exit(2) ... FAILED ([WILDCARD]) diff --git a/cli/tests/test/quiet_test.out b/cli/tests/test/quiet_test.out index 4b57c50fe..5ad03240d 100644 --- a/cli/tests/test/quiet_test.out +++ b/cli/tests/test/quiet_test.out @@ -1,4 +1,4 @@ -running 1 tests +running 1 tests from [WILDCARD] test log ... ok [WILDCARD] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [WILDCARD] diff --git a/cli/tests/test/test_finally_cleartimeout.out b/cli/tests/test/test_finally_cleartimeout.out index ddad7cce9..1c4d62b4e 100644 --- a/cli/tests/test/test_finally_cleartimeout.out +++ b/cli/tests/test/test_finally_cleartimeout.out @@ -1,5 +1,5 @@ Check [WILDCARD]/test_finally_cleartimeout.ts -running 2 tests +running 2 tests from [WILDCARD] test error ... FAILED ([WILDCARD]) test success ... ok ([WILDCARD]) |