From 34a3f2f132791ad33e6a6b59371bb6f029436ab4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Jul 2020 16:51:55 +0200 Subject: Tests and abc fix using Lars' branch --- test/database_test.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/database_test.ts (limited to 'test/database_test.ts') 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"); +}); -- cgit v1.2.3