Answers for "deno test"

0

deno test

123456import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
Deno.test("hello world", () => {  const x = 1 + 2;  assertEquals(x, 3);});
Posted by: Guest on May-29-2020

Browse Popular Code Answers by Language