Skip to main content
Module

x/expect/mod.ts

helpers for writing jest like expect tests in deno
Go to Latest
File
import * as m from "./mock.ts";export const mock = m;
export * from "./expect.ts";export function it(name: string, fn: () => void | Promise<void>) { Deno.test({ name, fn, });}