diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-28 11:16:38 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-28 13:27:05 -0400 |
commit | 08d3850fa88df2319300874c701da1415b7372a0 (patch) | |
tree | 2646ad5482e2c3c5402bafd37f8340e93c70cc39 /tests.ts | |
parent | 844f565cc053b188473a209e8642772ad42b43bd (diff) |
Add tests.ts for fast unit tests.
Also deno_testing/ which will be released as a standalone module.
Diffstat (limited to 'tests.ts')
-rw-r--r-- | tests.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests.ts b/tests.ts new file mode 100644 index 000000000..b9fcbf37f --- /dev/null +++ b/tests.ts @@ -0,0 +1,5 @@ +import { test, assert } from "./deno_testing/testing.ts"; + +test(async function test_matchTesters() { + assert(false, "assert failed on purpose."); +}); |