mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:47:35 +00:00
LibJS: Unbreak test-js test that depended on function object class name
This commit is contained in:
parent
cd53d046b2
commit
844efde54b
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ test("bad argument values", () => {
|
|||
[{}, "[object Object]"],
|
||||
[true, "true"],
|
||||
["foobar", "foobar"],
|
||||
[function () {}, "[object ScriptFunction]"], // FIXME: Better function stringification
|
||||
[function () {}, "[object OrdinaryFunctionObject]"], // FIXME: Better function stringification
|
||||
].forEach(testCase => {
|
||||
expect(() => {
|
||||
Symbol.keyFor(testCase[0]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue