ladybird/Libraries/LibJS/Tests/syntax/if-statement-empty-completion.js

5 lines
205 B
JavaScript
Raw Normal View History

test("if statement consequent/alternate expression returns empty completion", () => {
expect(eval("1; if (true) {}")).toBeUndefined();
expect(eval("1; if (false) {} else {}")).toBeUndefined();
});