chore: fix driver modes to test with under_test set

This commit is contained in:
Pavel 2024-06-01 07:28:48 -07:00
parent 4655a30bdd
commit 4c7a2e228b

View file

@ -30,6 +30,7 @@ export class DriverTestMode implements TestMode {
async setup() {
this._impl = await start({
NODE_OPTIONS: undefined, // Hide driver process while debugging.
PWTEST_UNDER_TEST: 1,
});
return this._impl.playwright;
}