A simple description formatter for Deno unit tests.
import { assert } from "https://deno.land/std/testing/asserts.ts";
import { description } from "https://deno.land/x/describe/mod.ts";
Deno.test(description({
name: "what is being tested",
given: "under such conditions",
should: "do as expected"
}), () => {
assert(true);
});
deno test mod.test.ts
Andre Silva - andreswebs
This project is licensed under the Unlicense.