6 lines
103 B
JavaScript

class Foo {
}
expect(new Foo().constructor).toBe(Foo);
expect(new Foo() instanceof Foo).toBeTruthy();