0.0.2 • Published 3 years ago

kelp-test v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

kelp-test

super tiny testing framework

kelp-test Build Status

Installation

$ npm install kelp-test

Example

const assert = require('assert');
const test = require('kelp-test');

(async () => {

  await test('Hello world', async () => {
    assert.ok(1);
  });

})();

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3

MIT

This work is licensed under the MIT license.