Skip to content

Commit 6883696

Browse files
authored
Add basic test using Deno testing framework
1 parent a9a02e2 commit 6883696

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

test/sample.test.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
2+
3+
Deno.test("basic test", () => {
4+
assertEquals(1, 1);
5+
});

0 commit comments

Comments
 (0)