Aaron Abramov 5b5ac1f366
fix typo in a comment
as title
2018-05-09 12:09:45 -04:00

25 lines
377 B
JavaScript

"use strict";
class Base {
set test(v) {
throw new Error("gobbledygook");
}
}
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
// a gobbledygook error that is thrown
}).toThrowError(TypeError)