diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-10-30 22:49:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-30 22:49:46 +0200 |
commit | e06515c5a904f92946bf20070a554094336f71ae (patch) | |
tree | ac775a96e84e69c8bd21a2c01dee57f5a4b4fd44 /cli/tests | |
parent | 95b9e5f30f9b5e925b9102430eaee10713cb0aa6 (diff) |
feat(test): better formatting for test elapsed time (#12610)
This commit changes formatting of elapsed time in test
runner output.
Instead of "XXXms", reporter outputs one of:
- "XXXms" for <1000ms
- "XXs" for <60s
- "XXXmYYs" for >=60s
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/workers/test.ts.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/workers/test.ts.out b/cli/tests/testdata/workers/test.ts.out index 1b4238a9b..f56dbda8a 100644 --- a/cli/tests/testdata/workers/test.ts.out +++ b/cli/tests/testdata/workers/test.ts.out @@ -1,3 +1,3 @@ [WILDCARD] -test result: ok. [WILDCARD] passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]ms) +test result: ok. [WILDCARD] passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]) |