Skip to content

Commit

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

0 comments on commit 10982f3

Please sign in to comment.