aboutsummaryrefslogtreecommitdiff
path: root/test/database_test.ts
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 16:51:55 +0200
committerMarvin Borner2020-07-18 16:51:55 +0200
commit34a3f2f132791ad33e6a6b59371bb6f029436ab4 (patch)
tree463bf8c68ce9b36085b1cd83179e367f09d645fb /test/database_test.ts
parent47f66e980761ad1218f51c7f51e51dd550bf0b35 (diff)
Tests and abc fix using Lars' branch
Diffstat (limited to 'test/database_test.ts')
-rw-r--r--test/database_test.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/database_test.ts b/test/database_test.ts
new file mode 100644
index 0000000..ca2e5b0
--- /dev/null
+++ b/test/database_test.ts
@@ -0,0 +1,7 @@
+import { assertEquals, assertArrayContains } from "https://deno.land/std/testing/asserts.ts";
+
+Deno.test("hello world", () => {
+ const x = 1 + 2;
+ assertEquals(x, 3);
+ assertArrayContains([1, 2, 3, 4, 5, 6], [3], "Expected 3 to be in the array");
+});