mshima / esmocha

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

esmocha

Mocha wrapper with built-in typescript, built-in expect with mock and snapshot support.

Usage

npm install esmocha --save-dev

esmocha executable is a wrapper for mocha executable, every option should work.

npx esmocha

Every method is re-exported.

// expect lib
import { expect } from 'esmocha';
// mocking lib
import { mock, resetAllMocks } from 'esmocha';
// mocha lib
import { afterAll, beforeAll } from 'esmocha';

Manual loading:

npx mocha --require esmocha/mocha --loader esmocha/loader

Updating expect snapshots:

npx esmocha --update-snapshot

License

MIT

About


Languages

Language:JavaScript 64.6%Language:TypeScript 35.4%