UNPKG

195 BJavaScriptView Raw
1/**
2 * Async wrapper for mocha
3 * @module amocha
4 */
5
6'use strict'
7
8const amocha = require('./amocha')
9
10let lib = amocha.bind(this)
11
12Object.assign(lib, amocha, {
13 amocha
14})
15
16module.exports = lib
\No newline at end of file