2019-02-24 08:14:49 +01:00

10 lines
136 B
JavaScript

class A {
static self = this;
static getA = () => this;
}
const { self, getA } = A;
expect(self).toBe(A);
expect(getA()).toBe(A);