Skip to content

Commit 157f7a8

Browse files
committed
chore(test): fix type test
1 parent 3f10a0d commit 157f7a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-d/core-types.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ describe('Core Data Types', () => {
219219
expectType<string[]>(config.exclude);
220220
expectType<string[]>(config.tags);
221221
expectType<string[]>(config.excludeTags);
222-
expectType<string>(config.outputDir);
222+
expectType<string | undefined>(config.outputDir);
223223
expectType<'all' | 'any' | 'iterations' | 'time'>(config.limitBy);
224224
expectType<ThresholdConfig>(config.thresholds);
225225
expectType<Record<string, unknown>>(config.reporterConfig);

0 commit comments

Comments
 (0)