@loopback/testlab
Version:
A collection of test utilities we use to write LoopBack tests.
15 lines • 657 B
JavaScript
// Copyright IBM Corp. and LoopBack contributors 2018,2020. All Rights Reserved.
// Node module: @loopback/testlab
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
Object.defineProperty(exports, "__esModule", { value: true });
exports.expect = void 0;
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="../should-as-function.d.ts" />
const shouldAsFunction = require('should/as-function');
shouldAsFunction.use((should, assertion) => {
assertion.addChain('to');
});
exports.expect = shouldAsFunction;
//# sourceMappingURL=expect.js.map
;