1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00
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();
});