Skip to content

song940/kelp-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kelp-test

super tiny testing framework

kelp-test Build Status

Installation

$ npm install kelp-test
curl -o test/test.js https://raw.githubusercontent.com/song940/kelp-test/master/index.js

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.