Skip to content

Commit 0572331

Browse files
committedOct 7, 2023
test: fix breaking tests
1 parent 330aa21 commit 0572331

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed
 

‎test/compiler.spec.ts

+20-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ test.group('Compiler', (group) => {
4646
JSON.stringify({
4747
include: ['**/*'],
4848
exclude: ['build'],
49-
compilerOptions: {},
49+
compilerOptions: {
50+
skipLibCheck: true,
51+
},
5052
})
5153
)
5254

@@ -112,6 +114,7 @@ test.group('Compiler', (group) => {
112114
exclude: ['build'],
113115
compilerOptions: {
114116
outDir: 'build',
117+
skipLibCheck: true,
115118
},
116119
})
117120
)
@@ -175,6 +178,7 @@ test.group('Compiler', (group) => {
175178
compilerOptions: {
176179
rootDir: './',
177180
outDir: 'build',
181+
skipLibCheck: true,
178182
},
179183
})
180184
)
@@ -238,6 +242,7 @@ test.group('Compiler', (group) => {
238242
compilerOptions: {
239243
rootDir: './',
240244
outDir: 'build/dist',
245+
skipLibCheck: true,
241246
},
242247
})
243248
)
@@ -302,6 +307,7 @@ test.group('Compiler', (group) => {
302307
foo: 'bar',
303308
rootDir: './',
304309
outDir: 'build/dist',
310+
skipLibCheck: true,
305311
},
306312
})
307313
)
@@ -350,6 +356,7 @@ test.group('Compiler', (group) => {
350356
compilerOptions: {
351357
rootDir: './',
352358
outDir: 'build/dist',
359+
skipLibCheck: true,
353360
},
354361
})
355362
)
@@ -418,6 +425,7 @@ test.group('Compiler', (group) => {
418425
compilerOptions: {
419426
rootDir: './',
420427
outDir: 'build/dist',
428+
skipLibCheck: true,
421429
},
422430
})
423431
)
@@ -487,6 +495,7 @@ test.group('Compiler', (group) => {
487495
rootDir: './',
488496
outDir: 'build/dist',
489497
noEmitOnError: true,
498+
skipLibCheck: true,
490499
},
491500
})
492501
)
@@ -556,6 +565,7 @@ test.group('Compiler', (group) => {
556565
exclude: ['build'],
557566
compilerOptions: {
558567
outDir: 'build',
568+
skipLibCheck: true,
559569
},
560570
})
561571
)
@@ -634,7 +644,9 @@ test.group('Compiler', (group) => {
634644
JSON.stringify({
635645
include: ['**/*'],
636646
exclude: ['build'],
637-
compilerOptions: {},
647+
compilerOptions: {
648+
skipLibCheck: true,
649+
},
638650
})
639651
)
640652

@@ -705,7 +717,9 @@ test.group('Compiler', (group) => {
705717
JSON.stringify({
706718
include: ['**/*'],
707719
exclude: ['build'],
708-
compilerOptions: {},
720+
compilerOptions: {
721+
skipLibCheck: true,
722+
},
709723
})
710724
)
711725

@@ -769,6 +783,7 @@ test.group('Compiler', (group) => {
769783
exclude: ['build'],
770784
compilerOptions: {
771785
outDir: 'build',
786+
skipLibCheck: true,
772787
},
773788
})
774789
)
@@ -814,6 +829,7 @@ test.group('Compiler', (group) => {
814829
compilerOptions: {
815830
rootDir: './',
816831
outDir: 'build/dist',
832+
skipLibCheck: true,
817833
},
818834
})
819835
)
@@ -867,6 +883,7 @@ test.group('Compiler', (group) => {
867883
compilerOptions: {
868884
rootDir: './',
869885
outDir: 'build/dist',
886+
skipLibCheck: true,
870887
},
871888
})
872889
)

0 commit comments

Comments
 (0)
Please sign in to comment.