Skip to content

Commit

Permalink
fix(test): default DEBUGP to false (#989)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelEinbinder authored Feb 13, 2020
1 parent 8ed88c9 commit d790b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/playwright.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports.describe = ({testRunner, product, playwrightPath}) => {
const headless = !!valueFromEnv('HEADLESS', true);
const slowMo = valueFromEnv('SLOW_MO', 0);
const CI = valueFromEnv('CI', false);
const dumpProtocolOnFailure = CI || valueFromEnv('DEBUGP', true);
const dumpProtocolOnFailure = CI || valueFromEnv('DEBUGP', false);

function valueFromEnv(name, defaultValue) {
if (!(name in process.env))
Expand Down

0 comments on commit d790b4c

Please sign in to comment.