LibJS: Uncomment passing tests

This commit is contained in:
Daniel Bertalan 2023-08-08 09:53:14 +02:00 committed by Jelle Raaijmakers
commit 7ac6af1998
Notes: sideshowbarker 2024-07-16 18:06:41 +09:00
2 changed files with 4 additions and 5 deletions

View file

@ -10,8 +10,7 @@ test("parse optional-chaining", () => {
expect("a?.b?.``").not.toEval();
expect("new Foo?.bar").not.toEval();
expect("new (Foo?.bar)").toEval();
// FIXME: This should pass.
// expect("(new Foo)?.bar").toEval();
expect("(new Foo)?.bar").toEval();
});
test("evaluate optional-chaining", () => {