diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-15 17:58:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 17:58:59 +0100 |
commit | 70434b5bfba701f9de2221b64ee40262c5370ae0 (patch) | |
tree | 9aa3753abf6f2e0f98cd16055cf8819153921ac2 /cli/tests/workers_test.out | |
parent | 620dd9724d4f8568efebb1642b49c653de9424cd (diff) |
refactor: change test reporter output (#4371)
This commit changes output of default test reporter to resemble output from Rust test runner;
first the name of running test is printed with "...", then after test has run result is printed on the same line.
* Split "Deno.TestEvent.Result" into "TestStart" and "TestEnd";
* changes TestReporter interface to support both events;
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'cli/tests/workers_test.out')
-rw-r--r-- | cli/tests/workers_test.out | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/workers_test.out b/cli/tests/workers_test.out index 1238ca70a..efc0ce57c 100644 --- a/cli/tests/workers_test.out +++ b/cli/tests/workers_test.out @@ -1,7 +1,7 @@ running 4 tests -OK workersBasic [WILDCARD] -OK nestedWorker [WILDCARD] -OK workerThrowsWhenExecuting [WILDCARD] -OK workerCanUseFetch [WILDCARD] +test workersBasic ... ok [WILDCARD] +test nestedWorker ... ok [WILDCARD] +test workerThrowsWhenExecuting ... ok [WILDCARD] +test workerCanUseFetch ... ok [WILDCARD] -test result: OK 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [WILDCARD] +test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [WILDCARD] |