Skip to content

Commit 10c6b6b

Browse files
authored
Merge pull request #40 from oblakstudio/feat/puppeteer-v23
Added support for Puppeteer v23 and v22
2 parents fe4c8a5 + 32bad61 commit 10c6b6b

File tree

7 files changed

+117
-124
lines changed

7 files changed

+117
-124
lines changed

.github/workflows/pull_request.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
strategy:
2222
matrix:
2323
node-version:
24-
- 18
25-
- 19
2624
- 20
2725
- 21
2826
runs-on: ubuntu-latest
@@ -40,7 +38,7 @@ jobs:
4038
- run: npm clean-install
4139
- name: Ensure dependencies are compatible with the version of node
4240
run: npx ls-engines
43-
- run: npm run test:e2e
41+
- run: aa-exec --profile=chrome npm run test:e2e
4442

4543
test:
4644
runs-on: ubuntu-latest
@@ -67,7 +65,7 @@ jobs:
6765
node-version: lts/*
6866
cache: npm
6967
- run: npm clean-install
70-
- run: npm run test:e2e:cov
68+
- run: aa-exec --profile=chrome npm run test:e2e:cov
7169
- name: Upload coverage reports to Codecov
7270
uses: codecov/codecov-action@v3
7371
env:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Lint
3131
run: npm run lint
3232
- name: Test
33-
run: npm run test:e2e
33+
run: aa-exec --profile=chrome npm run test:e2e
3434
- name: Build
3535
run: npm run build
3636
- name: Release

.husky/commit-msg

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
npx commitlint --edit $1

.husky/pre-commit

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npx --no lint-staged

package-lock.json

+109-109
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"semantic-release": "semantic-release"
2121
},
2222
"engines": {
23-
"node": ">=18"
23+
"node": ">=20"
2424
},
2525
"main": "dist/index.js",
2626
"types": "dist/index.d.ts",
@@ -52,8 +52,8 @@
5252
"typescript": "^5"
5353
},
5454
"peerDependencies": {
55-
"@nestjs/common": "^9 || ^10 || ^11",
56-
"@nestjs/core": "^9 || ^10 | ^11",
55+
"@nestjs/common": "^10 || ^11",
56+
"@nestjs/core": "^10 | ^11",
5757
"puppeteer": "^21 || ^22 || ^23",
5858
"puppeteer-extra": "^3",
5959
"reflect-metadata": "*",

tests/src/base/base.controller.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export class BaseController {
3131

3232
@Get('is-incognito')
3333
async isIncognito(): Promise<boolean> {
34-
return this.browser.browserContexts().reduce((acc, context) => acc || context.isIncognito(), true);
34+
await this.browser.createBrowserContext();
35+
return this.browser.browserContexts().length > 1;
3536
}
3637

3738
@Get('test-page')

0 commit comments

Comments
 (0)