Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abhishiv/judge
Test runner for browser/node
https://github.com/abhishiv/judge
Last synced: 26 days ago
JSON representation
Test runner for browser/node
- Host: GitHub
- URL: https://github.com/abhishiv/judge
- Owner: abhishiv
- Created: 2020-12-16T19:08:42.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-16T19:26:59.000Z (almost 4 years ago)
- Last Synced: 2023-05-18T11:10:43.724Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://abhishiv.github.io/judge
- Size: 418 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# @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";```