Skip to content

Commit

Permalink
test(examples): fixed yacat args
Browse files Browse the repository at this point in the history
  • Loading branch information
mgordel committed Sep 21, 2023
1 parent cd55201 commit 3cc8907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/examples/examples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const gothStartingTimeout = 180;
const goth = new Goth(gothConfig);

const examples = !noGoth ? testExamples.filter((e) => !e?.noGoth) : testExamples;
const criticalLogsRegExp = [/Task *. timeot/, /Task *. has been rejected/, /ERROR: TypeError/, /ERROR: Error/];
const criticalLogsRegExp = [/Task *. timeot/g, /Task *. has been rejected/g, /ERROR: TypeError/g, /ERROR: Error/g];

type Example = {
cmd: string;
Expand Down

0 comments on commit 3cc8907

Please sign in to comment.