1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

LibJS: Convert most builtin tests to new system

This commit is contained in:
Matthew Olsson 2020-07-04 10:09:48 -07:00 committed by Andreas Kling
parent 46581773c1
commit 3f97d75778
107 changed files with 2031 additions and 2243 deletions

View file

@ -1,40 +1,32 @@
load("test-common.js");
test("constructor properties", () => {
expect(Boolean).toHaveLength(1);
expect(Boolean.name).toBe("Boolean");
});
try {
assert(Boolean.length === 1);
assert(Boolean.name === "Boolean");
assert(Boolean.prototype.length === undefined);
assert(typeof new Boolean() === "object");
assert(new Boolean().valueOf() === false);
test("typeof", () => {
expect(typeof new Boolean()).toBe("object");
expect(typeof Boolean()).toBe("boolean");
expect(typeof Boolean(true)).toBe("boolean");
})
test("basic functionality", () => {
var foo = new Boolean(true);
var bar = new Boolean(true);
assert(foo !== bar);
assert(foo.valueOf() === bar.valueOf());
expect(foo).not.toBe(bar);
expect(foo.valueOf()).toBe(bar.valueOf());
assert(new Boolean(true).toString() === "true");
assert(new Boolean(false).toString() === "false");
assert(typeof Boolean() === "boolean");
assert(typeof Boolean(true) === "boolean");
assert(Boolean() === false);
assert(Boolean(false) === false);
assert(Boolean(null) === false);
assert(Boolean(undefined) === false);
assert(Boolean(NaN) === false);
assert(Boolean("") === false);
assert(Boolean(0.0) === false);
assert(Boolean(-0.0) === false);
assert(Boolean(true) === true);
assert(Boolean("0") === true);
assert(Boolean({}) === true);
assert(Boolean([]) === true);
assert(Boolean(1)) === true;
console.log("PASS");
} catch (err) {
console.log("FAIL: " + err);
}
expect(Boolean()).toBeFalse();
expect(Boolean(false)).toBeFalse();
expect(Boolean(null)).toBeFalse();
expect(Boolean(undefined)).toBeFalse();
expect(Boolean(NaN)).toBeFalse();
expect(Boolean("")).toBeFalse();
expect(Boolean(0.0)).toBeFalse();
expect(Boolean(-0.0)).toBeFalse();
expect(Boolean(true)).toBeTrue();
expect(Boolean("0")).toBeTrue();
expect(Boolean({})).toBeTrue();
expect(Boolean([])).toBeTrue();
expect(Boolean(1)).toBeTrue();
});