Skip to content

Commit 9204618

Browse files
authored
chore(deps): bump puppeteer (#79)
Contains fixes for the pipe transport.
1 parent 74fa209 commit 9204618

File tree

3 files changed

+12
-18
lines changed

3 files changed

+12
-18
lines changed

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"@modelcontextprotocol/sdk": "1.18.1",
3838
"debug": "4.4.3",
39-
"puppeteer-core": "24.22.0",
39+
"puppeteer-core": "24.22.2",
4040
"yargs": "18.0.0"
4141
},
4242
"devDependencies": {
@@ -52,7 +52,7 @@
5252
"eslint": "^9.35.0",
5353
"globals": "^16.4.0",
5454
"prettier": "^3.6.2",
55-
"puppeteer": "24.22.0",
55+
"puppeteer": "24.22.2",
5656
"sinon": "^21.0.0",
5757
"typescript": "^5.9.2",
5858
"typescript-eslint": "^8.43.0"

tests/browser.test.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,7 @@ import path from 'node:path';
1010
import {launch} from '../src/browser.js';
1111

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

0 commit comments

Comments
 (0)