blob: ca2e5b000a543d2478e853357d14f3a72f1b1927 (
plain) (
blame)
1
2
3
4
5
6
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");
});
|