mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
35 lines
562 B
JavaScript
35 lines
562 B
JavaScript
test("regular comments", () => {
|
|
const source = `
|
|
var i = 0;
|
|
// i++;
|
|
/* i++; */
|
|
/*
|
|
i++;
|
|
*/
|
|
/**/ i++;
|
|
return i;`;
|
|
|
|
expect(source).toEvalTo(1);
|
|
});
|
|
|
|
test("html comments", () => {
|
|
const source = `
|
|
var i = 0;
|
|
var j = 0;
|
|
<!-- i++; --> i++;
|
|
<!-- i++;
|
|
i++;
|
|
--> i++;
|
|
/**/ --> i++;
|
|
j --> i++;
|
|
return i;`;
|
|
expect(source).toEvalTo(2);
|
|
});
|
|
|
|
test("unterminated multi-line comment", () => {
|
|
expect("/*").not.toEval();
|
|
expect("/**").not.toEval();
|
|
expect("/*/").not.toEval();
|
|
expect("/* foo").not.toEval();
|
|
expect("foo /*").not.toEval();
|
|
});
|