aboutsummaryrefslogtreecommitdiff
path: root/test/database_test.ts
diff options
context:
space:
mode:
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");
+});