Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"dependencies": {
"@modelcontextprotocol/sdk": "1.18.1",
"debug": "4.4.3",
"puppeteer-core": "24.22.0",
"puppeteer-core": "24.22.2",
"yargs": "18.0.0"
},
"devDependencies": {
Expand All @@ -52,7 +52,7 @@
"eslint": "^9.35.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"puppeteer": "24.22.0",
"puppeteer": "24.22.2",
"sinon": "^21.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
Expand Down
8 changes: 1 addition & 7 deletions tests/browser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,7 @@ import path from 'node:path';
import {launch} from '../src/browser.js';

describe('browser', () => {
it('cannot launch multiple times with the same profile', async t => {
if (os.platform() === 'win32' || os.platform() === 'linux') {
t.skip(
'Flaky on Windows and Ubuntu images in GitHub actions. Not able to reproduce locally (b/446864025)',
);
return;
}
it('cannot launch multiple times with the same profile', async () => {
const tmpDir = os.tmpdir();
const folderPath = path.join(tmpDir, `temp-folder-${crypto.randomUUID()}`);
const browser1 = await launch({
Expand Down