~~ lineWidth: 40 ~~
== should format ==
const t = tag`testing`;

[expect]
const t = tag `testing`;

== should format with type parameters ==
const t = tag<T, U> `testing`;

[expect]
const t = tag<T, U> `testing`;

== should move the template literal to the next line when exceeding the width ==
const t = tag<Testing, Other> `testing this out`;

[expect]
const t = tag<Testing, Other>
    `testing this out`;
