~~ lineWidth: 30, conditionalExpression.preferSingleLine: true ~~
== should handle nested conditionals ==
test
    ? 1
    : test
    ? 3
    : 4;

[expect]
test ? 1 : test ? 3 : 4;

== should make it multi-line when there's a comment on any line ==
test // test
    ? 1
    : 2;
test
    ? 1 // test
    : 2;
test
    ? 1
    : 2; // single line obviously

[expect]
test // test
    ? 1
    : 2;
test
    ? 1 // test
    : 2;
test ? 1 : 2; // single line obviously
