0.1.4 • Published 3 years ago

@gratico/judge v0.1.4

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
3 years ago

@gratico/judge

@gratico/judge

Pluggable test runner.

Install and use

To use run npm install -g @gratico/judge

import {createTest} from "@gratico/judge"
const test = createTest()
test('foo', t => {
  t.pass();
});

test('bar', async t => {
  const bar = Promise.resolve('bar');
  t.is(await bar, 'bar');
});
export * from "./types";
export * from "./runners/index";
export * from "./utils/index";
0.1.4

3 years ago

0.1.3

3 years ago