LibJS/Tests: Fix typo in a test description

This commit is contained in:
Linus Groh 2021-11-30 20:42:04 +00:00
commit 5ca242ce30
Notes: sideshowbarker 2024-07-17 23:17:45 +09:00

View file

@ -47,7 +47,7 @@ describe("parsing", () => {
expect(`let [ a, [ ...{length} ] ] = [];`).toEval();
});
test("function parameters cannot use member expresssions", () => {
test("function parameters cannot use member expressions", () => {
expect("function f([a.b]) {}").not.toEval();
expect("function f([b[0]]) {}").not.toEval();