Skip to content

Commit

Permalink
add args check condition back
Browse files Browse the repository at this point in the history
  • Loading branch information
tianfeng92 committed Apr 5, 2024
1 parent 0a93d86 commit 7e50233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/playwright-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ async function runPlaywright(
key = utils.toHyphenated(key);
if (
excludeParams.includes(key.toLowerCase()) ||
value === undefined ||
value === null
value === false ||
value == null
) {
continue;
}
Expand Down

0 comments on commit 7e50233

Please sign in to comment.