@fromdeno/test

Minimal test runner, compatible with Deno.test()

Usage no npm install needed!

<script type="module">
  import fromdenoTest from 'https://cdn.skypack.dev/@fromdeno/test';
</script>

README

@fromdeno/test

Minimal test runner, compatible with Deno.test().

cli api install size

// @filename: test/example_test.js
const assert = require("assert/strict");
const { test } = require("@fromdeno/test");

test("example", () => {
  assert.equal(2 + 2, 4);
});
$ npm install --save-dev @fromdeno/test
$ fdt test/example_test.js