2020-07-16 16:01:20 -05:00

22 lines
318 B
JavaScript

"use strict";
class Base {
}
class Obj extends Base {
call() {
return super.test();
}
test() {
throw new Error("gobbledygook");
}
}
const obj = new Obj();
expect(() => {
obj.call();
// Assert that this throws, but that it's not
// Obj.p.test's error that is thrown
}).toThrowError(TypeError)