mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
34 lines
668 B
JavaScript
34 lines
668 B
JavaScript
test("throw literal", () => {
|
|
try {
|
|
throw 1;
|
|
expect().fail();
|
|
} catch (e) {
|
|
if (e.name === "ExpectationError") throw e;
|
|
expect(e).toBe(1);
|
|
}
|
|
});
|
|
|
|
test("throw array", () => {
|
|
try {
|
|
throw [99];
|
|
expect().fail();
|
|
} catch (e) {
|
|
if (e.name === "ExpectationError") throw e;
|
|
expect(e).toEqual([99]);
|
|
}
|
|
});
|
|
|
|
test("call function that throws", () => {
|
|
function foo() {
|
|
throw "hello";
|
|
expect().fail();
|
|
}
|
|
|
|
try {
|
|
foo();
|
|
expect().fail();
|
|
} catch (e) {
|
|
if (e.name === "ExpectationError") throw e;
|
|
expect(e).toBe("hello");
|
|
}
|
|
});
|