Files
2019-02-04 15:10:46 +01:00

14 lines
153 B
JavaScript

class Cl {
async #foo() {
return 2;
}
test() {
return this.#foo();
}
}
return new Cl().test().then(val => {
expect(val).toBe(2);
});