You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Locally, I use test, and in CI environment I use testci. As tests are executed serially locally, I still expect cookies to be cleared for each test as I'm using an incognito context, but they aren't.
I've tried resetting the page in-between each test:
From my package.json:
Locally, I use
test
, and in CI environment I usetestci
. As tests are executed serially locally, I still expect cookies to be cleared for each test as I'm using an incognito context, but they aren't.I've tried resetting the page in-between each test:
But then I just get an error:
I also thought about calling
page.close()
at the end of each test, then:...but
page
can't be re-assigned, as it's aconst
.Any suggestions would be appreciated.
The text was updated successfully, but these errors were encountered: