@loopback/testlab
Version:
A collection of test utilities we use to write LoopBack tests.
16 lines (11 loc) • 538 B
text/typescript
// 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
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="../should-as-function.d.ts" />
const shouldAsFunction: Internal = require('should/as-function');
shouldAsFunction.use((should, assertion) => {
assertion.addChain('to');
});
export const expect = shouldAsFunction;