Skip to content

Commit 580e8fd

Browse files
committed
set seflHeal: false for e2e tests
1 parent 460ff22 commit 580e8fd

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

packages/core/lib/v3/tests/v3.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const v3TestConfig: V3Options = {
77
headless: true,
88
viewport: { width: 1288, height: 711 },
99
},
10+
selfHeal: false,
1011
verbose: 0,
1112
disablePino: true,
1213
logger: (line: LogLine) => console.log(line),

packages/core/lib/v3/tests/v3.dynamic.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const v3DynamicTestConfig: V3Options =
2828
apiKey: process.env.BROWSERBASE_API_KEY!,
2929
projectId: process.env.BROWSERBASE_PROJECT_ID!,
3030
disableAPI: true,
31+
selfHeal: false,
3132
}
3233
: {
3334
...baseConfig,

packages/core/lib/v3/tests/v3.local.playwright.config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ export default defineConfig({
2020
// Local development can use more workers for faster test runs.
2121
workers: process.env.CI ? 3 : 5,
2222
fullyParallel: true,
23+
projects: [
24+
{
25+
name: "default",
26+
testIgnore: /shadow-iframe\.spec\.ts$/,
27+
},
28+
{
29+
name: "shadow-iframe",
30+
testMatch: /shadow-iframe\.spec\.ts$/,
31+
workers: 2,
32+
fullyParallel: true,
33+
},
34+
],
2335
reporter: "list",
2436
use: {
2537
// we're not launching Playwright browsers in these tests; we connect via Puppeteer/CDP to V3.

0 commit comments

Comments
 (0)