Skip to content

Commit

Permalink
Merge pull request #83 from hayd/fix-TS2322
Browse files Browse the repository at this point in the history
fix TS2322 compile error
  • Loading branch information
hayd authored Jul 31, 2022
2 parents ee7cefc + 8588843 commit 745f162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async function main(args: string[]) {
if (a.test instanceof Array) {
tests = a.test;
} else if (a.test) {
tests = [a.test];
tests = [a.test as string];
}

const thunk = testsThunk(tests);
Expand Down

0 comments on commit 745f162

Please sign in to comment.