Me1000 / runkit-tap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✅ runkit-tap

Test and view output on runkit.com

Runkit API

test(tests) where tests is of the form:

{
  'testname': (tap) => {/* tap statements */; tap.end();}
}

For example:

const test = require('runkit-tap');

// This returns an object that Runkit can render
await test({
  'equality': t => {
      t.equal(1, 1, 'equal');
      t.end();
  }
});

License

MIT © 2017 Marc Farra

About

License:MIT License


Languages

Language:JavaScript 100.0%