== should handle changing indentation of js doc ==
      /**
             * A
        * B
             */
const t;

[expect]
/**
 * A
 * B
 */
const t;

== should add spaces when missing ==
/**A
*B*/
const t;

[expect]
/** A
 * B */
const t;

== should support JS doc with text on the first line and last line ==
/** Test
      * Testing testing */
const t;

[expect]
/** Test
 * Testing testing */
const t;

== should trim leading and trailing blank lines ==
/**
 *
 * Testing
 *
 */
const t;

[expect]
/**
 * Testing
 */
const t;

== should remove consecutive blank lines ==
/** Testing
 *
 *
 * Test
 */
const t;

[expect]
/** Testing
 *
 * Test
 */
const t;

== should allow indented text at any indentation ==
/**
 * A
 *  A
 *   A
 *    A
 *     A
 */
const t;

[expect]
/**
 * A
 *  A
 *   A
 *    A
 *     A
 */
const t;
