locklift
Version:
Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.
8 lines (6 loc) • 301 B
text/typescript
import { supportEmitAndCall } from "./matchers/emitAndCall";
import { supportMessageErrors } from "./matchers/errorMessage";
export const lockliftChai = (chai: Chai.ChaiStatic, utils: Chai.ChaiUtils) => {
supportEmitAndCall(chai.Assertion, utils);
supportMessageErrors(chai.Assertion, utils);
};