0.8.4 • Published 1 year ago

ebdd v0.8.4

Weekly downloads
196
License
ISC
Repository
github
Last release
1 year ago

EBDD · npm version

Installation

npm install --save-dev ebdd

Usage

Command line

Run Mocha with additional parameter --ui=ebdd.

Node.js

Just set ui to "ebdd" in Mocha options, e.g.

const mocha = new Mocha({ ui: "ebdd" });

If you are using TypeScript, import the ebbd module in your code to use ebdd type information.

import "ebdd";

or

import type { } from "ebdd";

Browser

Load the script ebbd.js in the ebbd package, then call mocha.setup with option ui set to "ebdd", e.g.

<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/ebdd/ebdd.js"></script>
<script>
mocha.setup({ ui: "ebdd" });
</script>
<!-- Add tests here. -->
<script>
mocha.run();
</script>
0.8.4

1 year ago

0.8.1

2 years ago

0.8.0

2 years ago

0.8.3

2 years ago

0.8.2

2 years ago

0.7.1

3 years ago

0.7.0

4 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.1

4 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago

0.0.0

5 years ago