Skip to content

Commit

Permalink
chore: disable DIPS
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Apr 28, 2023
1 parent 4b3fa0e commit eb7450c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/puppeteer-core/src/node/ChromeLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ export class ChromeLauncher extends ProductLauncher {
'--disable-dev-shm-usage',
'--disable-extensions',
// AcceptCHFrame disabled because of crbug.com/1348106.
'--disable-features=Translate,BackForwardCache,AcceptCHFrame,MediaRouter,OptimizationHints',
// DIPS is disabled because of crbug.com/1439578. TODO: enable after M115.
'--disable-features=Translate,BackForwardCache,AcceptCHFrame,MediaRouter,OptimizationHints,DIPS',
'--disable-hang-monitor',
'--disable-ipc-flooding-protection',
'--disable-popup-blocking',
Expand Down
2 changes: 0 additions & 2 deletions test/src/page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2028,8 +2028,6 @@ describe('Page', function () {
});

describe('Page.pdf', function () {
this.timeout(40_000);

it('can print to PDF and save to file', async () => {
const {page, server} = getTestState();

Expand Down

0 comments on commit eb7450c

Please sign in to comment.