File tree 1 file changed +0
-14
lines changed
1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -70,13 +70,6 @@ test("integration - no errors - no declaration maps", async () => {
70
70
clean : true ,
71
71
} ) ;
72
72
73
- // populate the cache
74
- await genBundle ( "fixtures/no-errors/index.ts" , { tsconfigOverride : noDeclarationMaps } ) ;
75
- const { output : outputWithCache } = await genBundle ( "fixtures/no-errors/index.ts" , {
76
- tsconfigOverride : noDeclarationMaps ,
77
- } ) ;
78
- expect ( output ) . toEqual ( outputWithCache ) ;
79
-
80
73
expect ( output [ 0 ] . fileName ) . toEqual ( "index.ts" ) ;
81
74
expect ( output [ 1 ] . fileName ) . toEqual ( "index.d.ts" ) ;
82
75
expect ( output [ 2 ] . fileName ) . toEqual ( "some-import.d.ts" ) ;
@@ -92,13 +85,6 @@ test("integration - no errors - no declarations", async () => {
92
85
clean : true ,
93
86
} ) ;
94
87
95
- // populate the cache
96
- await genBundle ( "fixtures/no-errors/index.ts" , { tsconfigOverride : noDeclarations } ) ;
97
- const { output : outputWithCache } = await genBundle ( "fixtures/no-errors/index.ts" , {
98
- tsconfigOverride : noDeclarations ,
99
- } ) ;
100
- expect ( output ) . toEqual ( outputWithCache ) ;
101
-
102
88
expect ( output [ 0 ] . fileName ) . toEqual ( "index.ts" ) ;
103
89
expect ( output . length ) . toEqual ( 1 ) ; // no other files
104
90
} ) ;
You can’t perform that action at this time.
0 commit comments