Skip to content

Commit

Permalink
remove headless option
Browse files Browse the repository at this point in the history
  • Loading branch information
Cavit Baturalp Gurdin committed Apr 12, 2022
1 parent 091e840 commit 024d9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/test/performance/services/performance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class PerformanceTestingService extends FtrService {
}
return await this.withSpan('browser creation', 'setup', async () => {
const headless = !!(process.env.TEST_BROWSER_HEADLESS || process.env.CI);
this.browser = await playwright.chromium.launch({ headless: false, timeout: 60000 });
this.browser = await playwright.chromium.launch({ headless, timeout: 60000 });
return this.browser;
});
}
Expand Down

0 comments on commit 024d9aa

Please sign in to comment.