~~ lineWidth: 40 ~~
== should keep as-is ==
f("testing", {
    a: 1
});

[expect]
f("testing", {
    a: 1,
});

== string after and not at start of line ==
call({
    prop,
}, "testing");

[expect]
call({
    prop,
}, "testing");

== several object expressions ==
call({
    prop,
}, {
    prop,
});

[expect]
call({
    prop,
}, {
    prop,
});
