https://github.com/wolfpup-software/jackrabbit-js
a test runner for TS / JS
https://github.com/wolfpup-software/jackrabbit-js
ecmascript javascript testing testing-tools tests typescript
Last synced: 7 months ago
JSON representation
a test runner for TS / JS
- Host: GitHub
- URL: https://github.com/wolfpup-software/jackrabbit-js
- Owner: wolfpup-software
- License: bsd-3-clause
- Created: 2021-02-21T08:39:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-21T21:35:25.000Z (7 months ago)
- Last Synced: 2024-11-21T22:22:09.402Z (7 months ago)
- Topics: ecmascript, javascript, testing, testing-tools, tests, typescript
- Language: TypeScript
- Homepage:
- Size: 211 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jackrabbit
Tests without dependencies.
A test runner without dependencies.
## Basics
A `test` is a function that returns `assertions`.
A `test module` is an array of `tests` (exported by a javascript module).
A `test collection` is an array of `test modules` (exported by a javascript module).
A `test runner` loads `test collections` and logs test results.
Jackrabbit is a test runner.
## Tests
See [this guide](./JACKRABBIT.md) to create jackrabbit tests.
## Nodejs
### Install
Install jackrabbit with npm via github.
```sh
npm install --save-dev https://github.com/wolfpup-software/jackrabbit-js
```### Run Test Collections
```sh
npx jackrabbit --file ./path/to/test/collection/mod.ts
```## License
BSD 3-Clause License