Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/reasonml-community/bs-mocha


https://github.com/reasonml-community/bs-mocha

bucklescript mocha reason

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# bs-mocha

Bucklescript bindings for mocha

## Install

```
npm install bs-mocha --save-dev
```

## Usage

```reason
open BsMocha;
let (it', it_skip') = Async.(it, it_skip);
open Mocha;

describe("Some Test Suite", () => {
describe("List.map", () => {
it("should map the values", () =>
Assert.deep_equal(List.map(( * )(2), [1, 2, 3]), [2, 4, 6])
);

it("should work with an empty list", () =>
Assert.equal(List.map(( * )(2), []), [])
);
})
});
```

## License
See `LICENSE`