summaryrefslogtreecommitdiff
path: root/tests.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-28 11:16:38 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-28 13:27:05 -0400
commit08d3850fa88df2319300874c701da1415b7372a0 (patch)
tree2646ad5482e2c3c5402bafd37f8340e93c70cc39 /tests.ts
parent844f565cc053b188473a209e8642772ad42b43bd (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.ts5
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.");
+});