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 a374d48 commit 4137bb5Copy full SHA for 4137bb5
config.js
@@ -5,7 +5,7 @@ dotenv.config({ path: 'data/config.env' }); // loads env vars from file - will n
5
6
// Options - also see table in README.md
7
export const cfg = {
8
- debug: process.env.PWDEBUG == '1', // runs non-headless and opens https://playwright.dev/docs/inspector
+ debug: process.env.DEBUG == '1' || process.env.PWDEBUG == '1', // runs non-headless and opens https://playwright.dev/docs/inspector
9
record: process.env.RECORD == '1', // `recordHar` (network) + `recordVideo`
10
time: process.env.TIME == '1', // log duration of each step
11
dryrun: process.env.DRYRUN == '1', // don't claim anything
0 commit comments