https://github.com/lsongdev/kelp-test
super tiny testing framework
https://github.com/lsongdev/kelp-test
test-driven-development testing testing-framework testing-tools
Last synced: 8 months ago
JSON representation
super tiny testing framework
- Host: GitHub
- URL: https://github.com/lsongdev/kelp-test
- Owner: lsongdev
- License: mit
- Created: 2019-10-10T08:04:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-16T03:37:37.000Z (almost 4 years ago)
- Last Synced: 2025-02-13T22:23:43.172Z (over 1 year ago)
- Topics: test-driven-development, testing, testing-framework, testing-tools
- Language: JavaScript
- Homepage: https://npmjs.org/kelp-test
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## kelp-test
> super tiny testing framework
[](https://npmjs.org/kelp-test)
[](https://travis-ci.org/song940/kelp-test)
### Installation
```bash
$ npm install kelp-test
```
```bash
curl -o test/test.js https://raw.githubusercontent.com/song940/kelp-test/master/index.js
```
### Example
```js
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](./LICENSE).
---