1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:18:11 +00:00

LibJS: Convert all remaining non-Array tests to the new system :)

This commit is contained in:
Matthew Olsson 2020-07-05 17:26:26 -07:00 committed by Andreas Kling
parent 918f4affd5
commit 15de2eda2b
72 changed files with 2394 additions and 1998 deletions

View file

@ -1,21 +1,16 @@
load("test-common.js");
test("basic functionality", () => {
const x = 1;
try {
var x = 1;
expect(x === 1 ? true : false).toBeTrue();
expect(x ? x : 0).toBe(x);
expect(1 < 2 ? true : false).toBeTrue();
expect(0 ? 1 : 1 ? 10 : 20).toBe(10);
expect(0 ? (1 ? 1 : 10) : 20).toBe(20);
});
assert(x === 1 ? true : false);
assert((x ? x : 0) === x);
assert(1 < 2 ? true : false);
assert((0 ? 1 : 1 ? 10 : 20) === 10);
assert((0 ? (1 ? 1 : 10) : 20) === 20);
var o = {};
test("object values", () => {
const o = {};
o.f = true;
assert(o.f ? true : false);
assert(1 ? o.f : null);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}
expect(o.f ? true : false).toBeTrue();
expect(1 ? o.f : null).toBeTrue();
});