UNPKG

361 BJavaScriptView Raw
1"use strict";
2// tslint:disable no-unused
3Object.defineProperty(exports, "__esModule", { value: true });
4exports.expect = void 0;
5const tryRequire = (module) => {
6 try {
7 return require(module);
8 }
9 catch (_) {
10 }
11};
12const chai = tryRequire('chai');
13exports.expect = (chai && chai.expect) || (() => {
14 throw new Error('install chai');
15});