Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

fromdeno/test

Repository files navigation

@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