0
votes

I have a simple question.

How to turn off the PWDEBUG on Playwright when running 'npx playwright test'

I have added a $env:PWDEBUG=1 in VS Terminal and all the time the tests are running into debugging mode. I just want the tests to run.

Any ideas?

1
Have you tried exiting (not closing but clicking on the trash icon) out of terminal and launching it again?Vaviloff

1 Answers

0
votes

You can unset the environment variable by the following command

$env:PWDEBUG=""

this should run the tests in normal mode.