UNPKG

@palmares/tests

Version:

This defines a default test framework testing stuff inside of the framework

47 lines (45 loc) 1.47 kB
var __defProp = Object.defineProperty; var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); // src/adapter/expect.ts var TestExpectAdapter = class { static { __name(this, "TestExpectAdapter"); } toBe(_value, _expected, _isNot, _customData) { throw new Error("Not implemented"); } toEqual(_value, _expected, _isNot, _customData) { throw new Error("Not implemented"); } toStrictEqual(_value, _expected, _isNot, _customData) { throw new Error("Not implemented"); } toBeDefined(_value, _isNot, _customData) { throw new Error("Not implemented"); } toBeInstanceOf(__value, _expected, _isNot, _customData) { throw new Error("Not implemented"); } toHaveBeenCalled(_value, _isNot, _customData) { throw new Error("Not implemented"); } // eslint-disable-next-line ts/require-await async toHaveBeenCalledTimes(_value, _isNot, _customData) { throw new Error("Not implemented"); } // eslint-disable-next-line ts/require-await async toHaveBeenCalledWith(_value, _args, _isNot, _customData) { throw new Error("Not implemented"); } // eslint-disable-next-line ts/require-await async toHaveReturned(_value, _isNot, _customData) { throw new Error("Not implemented"); } // eslint-disable-next-line ts/require-await async toHaveReturnedTimes(_value, _expected, _isNot, _customData) { throw new Error("Not implemented"); } }; export { TestExpectAdapter };