1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 22:15:07 +00:00

LibJS: Use assertNotReached() in tests

This commit is contained in:
Linus Groh 2020-04-13 14:11:09 +01:00 committed by Andreas Kling
parent 92a9fe0e49
commit b9415dc0e9
8 changed files with 36 additions and 27 deletions

View file

@ -1,11 +1,13 @@
try {
throw 1;
assertNotReached();
} catch (e) {
assert(e === 1);
}
try {
throw [99];
assertNotReached();
} catch (e) {
assert(typeof e === "object");
assert(e.length === 1);
@ -13,10 +15,12 @@ try {
function foo() {
throw "hello";
assertNotReached();
}
try {
foo();
assertNotReached();
} catch (e) {
assert(e === "hello");
}