6 lines
95 B
JavaScript

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