You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert(result.outputFiles.length===1,"a number of files other than 1 was output");
49
+
assert(result.outputFiles[0].name==="input.js",`Expected output file name input.js, but got ${result.outputFiles[0].name}`);
50
+
assert(result.outputFiles[0].text.match(options.newLine===NewLineKind.CarriageReturnLineFeed ? /\r\n/ : /[^\r]\n/),"expected to find appropriate newlines");
51
+
assert(!result.outputFiles[0].text.match(options.newLine===NewLineKind.CarriageReturnLineFeed ? /[^\r]\n/ : /\r\n/),"expected not to find inappropriate newlines");
0 commit comments