Skip to content

Commit 099ec33

Browse files
committed
fix default values for config
1 parent 23e4f88 commit 099ec33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/testing/src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export class Config {
5050
testSome?: (args: Args, tests: AffectedTests) => void;
5151
}) {
5252
this.match = List(match || ['**']);
53-
this.ignore = List(ignore);
54-
this.packageFile = List(packageFile);
53+
this.ignore = List(ignore || []);
54+
this.packageFile = List(packageFile || []);
5555
this._lint = lint || (_ => {});
5656
this._testAll = testAll || (_ => {});
5757
this._testSome = testSome || (_ => {});

0 commit comments

Comments
 (0)