mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:57: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]"],
|
[{}, "[object Object]"],
|
||||||
[true, "true"],
|
[true, "true"],
|
||||||
["foobar", "foobar"],
|
["foobar", "foobar"],
|
||||||
[function () {}, "[object ScriptFunction]"], // FIXME: Better function stringification
|
[function () {}, "[object OrdinaryFunctionObject]"], // FIXME: Better function stringification
|
||||||
].forEach(testCase => {
|
].forEach(testCase => {
|
||||||
expect(() => {
|
expect(() => {
|
||||||
Symbol.keyFor(testCase[0]);
|
Symbol.keyFor(testCase[0]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue