diff options
| author | chiefbiiko <noah.anabiik.schwarz@gmail.com> | 2019-03-11 19:21:13 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-11 14:21:13 -0400 |
| commit | 4a97a6e67e93cdbcecde3d9b99092f15d3dfd803 (patch) | |
| tree | 71085fb76e7e4b540f7e376fe0c97b04be86c7f6 /testing/test.ts | |
| parent | d4ba2978a6e1c2a38a98ad95d0915e492e5a3621 (diff) | |
Move benching into testing. (denoland/deno_std#258)
Original: https://github.com/denoland/deno_std/commit/4de86f04de8c83f8af184cb67b56f4022c17864f
Diffstat (limited to 'testing/test.ts')
| -rw-r--r-- | testing/test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/test.ts b/testing/test.ts index 367e28022..2359cba2e 100644 --- a/testing/test.ts +++ b/testing/test.ts @@ -11,6 +11,7 @@ import "./format_test.ts"; import "./diff_test.ts"; import "./pretty_test.ts"; import "./asserts_test.ts"; +import "./bench_test.ts"; test(function testingAssertEqualActualUncoercable() { let didThrow = false; @@ -251,4 +252,4 @@ test(async function testingThrowsAsyncMsgNotIncludes() { assert(didThrow); }); -runIfMain(import.meta, { parallel: true }); +runIfMain(import.meta); |
