ladybird/Libraries/LibJS/Tests/custom-@@hasInstance.js

9 lines
258 B
JavaScript

test("basic functionality", () => {
function Foo() {}
Object.defineProperty(Foo, Symbol.hasInstance, {
value: instance => instance === 2,
});
expect(new Foo() instanceof Foo).toBeFalse();
expect(2 instanceof Foo).toBeTrue();
});