viewerReference.ts 413 B

123456789
  1. /// <reference path="../../node_modules/@types/chai/index.d.ts" />
  2. /// <reference path="../../node_modules/@types/mocha/index.d.ts" />
  3. /// <reference path="../../node_modules/@types/sinon/index.d.ts" />
  4. /*
  5. * Create a constant with the ChaiJS' expect module just to make the code more readable.
  6. */
  7. export const should = chai.should();
  8. export const expect = chai.expect;
  9. export const assert = chai.assert;