mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -1,34 +0,0 @@
|
||||
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");
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user