We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e4f88 commit 099ec33Copy full SHA for 099ec33
.github/testing/src/config.ts
@@ -50,8 +50,8 @@ export class Config {
50
testSome?: (args: Args, tests: AffectedTests) => void;
51
}) {
52
this.match = List(match || ['**']);
53
- this.ignore = List(ignore);
54
- this.packageFile = List(packageFile);
+ this.ignore = List(ignore || []);
+ this.packageFile = List(packageFile || []);
55
this._lint = lint || (_ => {});
56
this._testAll = testAll || (_ => {});
57
this._testSome = testSome || (_ => {});
0 commit comments