1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +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([]);
});