Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions yarn-project/ivc-integration/src/chonk_browser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { execSync } from 'child_process';
import { existsSync, readFileSync } from 'fs';
import { createServer } from 'http';
import { dirname, join } from 'path';
import puppeteer, { Browser } from 'puppeteer';
import { Browser, launch } from 'puppeteer';
import { fileURLToPath } from 'url';

const logger = createLogger('ivc-integration:test:browser');
Expand Down Expand Up @@ -89,7 +89,7 @@ describe('Chonk Integration - Browser with Puppeteer', () => {
logger.info("Using Puppeteer's default Chrome");
}

browser = await puppeteer.launch(launchOptions);
browser = await launch(launchOptions);
logger.info('Browser launched');
});

Expand Down
Loading