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

LibJS: eval(x) should return x without evaluation if x is not a string

This commit is contained in:
Andreas Kling 2021-03-17 20:57:29 +01:00
parent d792200a55
commit 60e630d5a0
2 changed files with 9 additions and 4 deletions

View file

@ -24,3 +24,8 @@ test("syntax error", () => {
"Unexpected token Eof. Expected CurlyClose (line: 1, column: 2)"
);
});
test("returns 1st argument unless 1st argument is a string", () => {
var string_object = new String("1 + 2");
expect(string_object).toBe(string_object);
});