This commit is contained in:
Henry Zhu 2015-07-21 23:57:13 -04:00
parent ec9a75173b
commit 2bb5101112

View File

@ -1218,4 +1218,13 @@ describe("verify", function () {
[] []
); );
}); });
it("ternary and parens #149", function () {
verifyAndAssertMessages([
"true ? (true) : false;"
].join("\n"),
{ "space-infix-ops": 1 },
[]
);
});
}); });