Skip to content

Commit 0f5f80d

Browse files
committed
Disable feedback panel in proxy tests
1 parent ce38173 commit 0f5f80d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/compass-e2e-tests/tests/proxy.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ describe('Proxy support', function () {
7272
});
7373

7474
it('can change the proxy option dynamically', async function () {
75-
compass = await init(this.test?.fullTitle());
75+
compass = await init(this.test?.fullTitle(), {
76+
// Disabling feedback panel, to avoid a preflight request to the update server
77+
// which will mess with the request we fire below.
78+
extraSpawnArgs: [`--enableFeedbackPanel=false`],
79+
});
7680
browser = compass.browser;
7781

7882
await browser.setFeature(

0 commit comments

Comments
 (0)