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

LibJS/Tests: Remove two leftover console.log() calls

This commit is contained in:
Linus Groh 2021-07-28 18:28:53 +01:00
parent d84fd3ad5c
commit 2ba338869b
2 changed files with 0 additions and 2 deletions

View file

@ -1,6 +1,5 @@
test("use with array", () => {
let names = Object.getOwnPropertySymbols([1, 2, 3]);
console.log(names);
expect(names).toEqual([]);
});

View file

@ -32,7 +32,6 @@ describe("errors", () => {
for (let i = 0; i < 9; ++i) {
const args = [0, 1, 1, 0, 0, 0, 0, 0, 0];
args[i] = badValues[i];
console.log(args);
expect(() => {
new Temporal.PlainDateTime(...args);
}).toThrowWithMessage(RangeError, "Invalid plain date time");