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

fromdeno/test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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