1
0
Fork 0

add readme, make fast-check a peer dep

This commit is contained in:
ssube 2021-07-25 12:09:50 -05:00
parent ceabd03439
commit a9e9194e14
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
2 changed files with 100 additions and 3 deletions

96
README.md Normal file
View File

@ -0,0 +1,96 @@
# mocha-foam
An experimental Mocha BDD wrapper for fast-check.
## Contents
- [mocha-foam](#mocha-foam)
- [Contents](#contents)
- [Install](#install)
- [Usage](#usage)
- [Build](#build)
- [License](#license)
## Install
Add `mocha-foam` to your project as a dev dependency:
```shell
> yarn add -D mocha-foam
```
## Usage
This is a BDD-style wrapper around `fc.check(fc.asyncProperty(...))`, and supports all of the same [Arbitraries](https://github.com/dubzzz/fast-check/blob/main/documentation/Arbitraries.md)
that fast-check normally provides.
The entrypoint function is `over` and the library is provided as an ES module:
```typescript
import { expect } from 'chai';
import { integer } from 'fast-check';
import { over } from 'mocha-foam';
describe('example properties', () => {
over('some numbers', integer(), (it) => {
it('should be even', (n: number) => {
return n % 2 === 0;
});
it('should be odd', async (n: number) => {
expect(n % 2).to.equal(1);
});
});
});
```
Most Mocha features, like `beforeEach` and `afterEach` hooks, work correctly within the suite defined by `over`.
You can pass additional run parameters to the fast-check Runner after the suite callback:
```typescript
describe('more examples', () => {
over('some UUIDs', uuid(), (it) => {
// beforeEach hooks work normally, since the wrapped it calls through to real it
beforeEach(() => {
console.log('before each UUID test');
});
it('should be a good one', (id: string) => {
return id[9] !== 'a';
});
it('should be long enough', (id: string) => {
expect(id).to.have.length.greaterThan(2);
});
}, {
// fast-check parameters are supported, like examples
examples: ['a', 'b'],
numRuns: 1_000,
});
over('mapped properties', tuple(lorem(), integer()).map(([a, b]) => a.substr(b)), (it) => {
it('should have content', (text: string) => {
return text.length > 0;
});
}, {
// error formatting can be overridden with a custom handler, or fast-check's default reporter
errorReporter: defaultReportMessage,
});
});
```
## Build
To build `mocha-foam`, run `make`. The build depends on:
- Node 14+
- Yarn 1.x
To run small tests with coverage, run `make cover`.
The `make help` target will print help for the available targets.
## License
`mocha-foam` is released under [the MIT license](LICENSE.md).

View File

@ -13,15 +13,16 @@
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"esm": "^3.2.25",
"fast-check": "^2.17.0",
"mocha": "<9.0.0",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.19",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"fast-check": "^2.17.0",
"tslib": "^2.3.0"
"peerDependencies": {
"fast-check": "^2.17.0"
}
}