📜  deno test - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:29.403000             🧑  作者: Mango

代码示例1
123456import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
Deno.test("hello world", () => {  const x = 1 + 2;  assertEquals(x, 3);});