testing/src/assertions.ts

9 lines
240 B
TypeScript

import { expect as _expect } from "./expect/expect.ts";
export function expect(value: any): ReturnType<typeof _expect> {
if (value && value.hasOwnProperty("_toExpected")) {
value = value._toExpected();
}
return _expect(value);
}