dsherret / test

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@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

About

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

License:MIT License


Languages

Language:JavaScript 100.0%