mappersmith
Version:
It is a lightweight rest client for node.js and the browser
11 lines • 313 B
JavaScript
// src/mocks/mock-assert.js
function MockAssert(calls) {
this.calls = () => calls;
this.callsCount = () => calls.length;
this.mostRecentCall = () => calls[calls.length - 1] || null;
}
var mock_assert_default = MockAssert;
export {
mock_assert_default as default
};
//# sourceMappingURL=mock-assert.mjs.map