Skip to content

Commit 7ac22c4

Browse files
authored
Merge pull request #15517 from Microsoft/fixTranspileTest
Fix failing transpileModule test
2 parents 88f9a97 + 6cd85db commit 7ac22c4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/harness/unittests/transform.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ namespace ts {
6868
transformers: {
6969
before: [replaceUndefinedWithVoid0],
7070
after: [replaceIdentifiersNamedOldNameWithNewName]
71+
},
72+
compilerOptions: {
73+
newLine: NewLineKind.CarriageReturnLineFeed
7174
}
7275
}).outputText;
7376
});
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
var newName = void 0 /*undefined*/;
1+
var newName = void 0 /*undefined*/;

0 commit comments

Comments
 (0)