-- test.mjs -- == should format mjs file == class Test{ prop = 5} [expect] class Test { prop = 5; } == should support JSX in mjs file == const test = Test; [expect] const test = Test;