index.mjs 414 B

1234567891011121314
  1. import chai from './index.js';
  2. export const expect = chai.expect;
  3. export const version = chai.version;
  4. export const Assertion = chai.Assertion;
  5. export const AssertionError = chai.AssertionError;
  6. export const util = chai.util;
  7. export const config = chai.config;
  8. export const use = chai.use;
  9. export const should = chai.should;
  10. export const assert = chai.assert;
  11. export const core = chai.core;
  12. export default chai;