@fromdeno/test

Minimal test runner for @deno/shim-deno-test


Keywords
deno, test, testing, tdd, runner, harness, cli, deno-test, node, node-js, nodejs, testing-library, testing-tools
License
MIT
Install
npm install @fromdeno/test@0.4.0

Documentation

@fromdeno/test

Minimal test runner for https://npm.im/@deno/shim-deno-test.

cli api install size

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

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

Insights from dogfooding