~~ lineWidth: 40 ~~
== should not hanging indent when going above line width for a describe ==
describe("testing this out with a long string", () => {
    // etc...
});

[expect]
describe("testing this out with a long string", () => {
    // etc...
});

== should not hanging indent when it has a property ==
describe.only("testing this out with a long string", () => {
    // etc...
});

[expect]
describe.only("testing this out with a long string", () => {
    // etc...
});

== should not hanging indent for an it ==
it("testing this out with a long string", () => {
    // etc...
});

[expect]
it("testing this out with a long string", () => {
    // etc...
});

== should not be hanging for template literal ==
it(`testing this out ${test} testing testing`, () => {
});

[expect]
it(`testing this out ${test} testing testing`, () => {
});

== should hanging indent when the arrow function expression is not on the same line ==
it("testing this out with a long string",
() => {
    // etc...
});

[expect]
it("testing this out with a long string",
    () => {
        // etc...
    });
