chai/index.mjs
Gil Tayar e08ca08f3b
feat: add Node.js ESM entry point with named and default exports (#1340)
* add Node.js ESM entry point with named and default exports

* ensure that deep importing works
2020-06-09 11:17:41 +01:00

13 lines
373 B
JavaScript

import chai from './index.js';
export const expect = chai.expect;
export const version = chai.version;
export const AssertionError = chai.AssertionError;
export const util = chai.util;
export const config = chai.config;
export const use = chai.use;
export const should = chai.should;
export const assert = chai.assert;
export const core = chai.core;
export default chai;