Skip to content

Commit 25b1d9d

Browse files
author
Armando Aguirre
committed
Updated tests
1 parent 4af47f1 commit 25b1d9d

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

src/harness/unittests/convertCompilerOptionsFromJson.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ namespace ts {
457457
maxNodeModuleJsDepth: 2,
458458
allowSyntheticDefaultImports: true,
459459
skipLibCheck: true,
460+
noEmit: true,
460461
module: ModuleKind.CommonJS,
461462
target: ScriptTarget.ES5,
462463
noImplicitAny: false,
@@ -486,6 +487,7 @@ namespace ts {
486487
maxNodeModuleJsDepth: 2,
487488
allowSyntheticDefaultImports: true,
488489
skipLibCheck: true,
490+
noEmit: true,
489491
module: ModuleKind.CommonJS,
490492
target: ScriptTarget.ES5,
491493
noImplicitAny: false,
@@ -510,7 +512,8 @@ namespace ts {
510512
allowJs: true,
511513
maxNodeModuleJsDepth: 2,
512514
allowSyntheticDefaultImports: true,
513-
skipLibCheck: true
515+
skipLibCheck: true,
516+
noEmit: true
514517
},
515518
errors: [{
516519
file: undefined,
@@ -532,7 +535,8 @@ namespace ts {
532535
allowJs: true,
533536
maxNodeModuleJsDepth: 2,
534537
allowSyntheticDefaultImports: true,
535-
skipLibCheck: true
538+
skipLibCheck: true,
539+
noEmit: true
536540
},
537541
errors: []
538542
}

src/harness/unittests/telemetry.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ namespace ts.projectSystem {
185185
allowSyntheticDefaultImports: true,
186186
maxNodeModuleJsDepth: 2,
187187
skipLibCheck: true,
188+
noEmit: true
188189
};
189190

190191
it("sends telemetry for typeAcquisition settings", () => {

0 commit comments

Comments
 (0)