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
3 changes: 2 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: microsoft/playwright-github-action@v1
- uses: shivammathur/setup-php@v2
with:
php-version: 7.4
Expand All @@ -37,6 +36,8 @@ jobs:
npm install
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
- name: Install deps
run: npx playwright install-deps
- name: start a server
run: "php -S 127.0.0.1:8000 -t test/data/app &"
- name: run chromium tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testcafe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [14.x]

steps:
- uses: actions/checkout@v1
Expand Down
8 changes: 6 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ layout: Section

# Releases

## 3.3.3

* Fixed `DataCloneError: () => could not be cloned` when running data tests in run-workers
* 🇺🇦 Added #StandWithUkraine notice to CLI


## 3.3.2

* **[REST]** Fixed override of headers/token in `haveRequestHeaders()` and `amBearerAuthenticated()`. See [#3304](https://github.com/codeceptjs/CodeceptJS/issues/3304) by **[mirao](https://github.com/mirao)**
Expand Down Expand Up @@ -50,8 +56,6 @@ npx codeceptjs run test-dir/*"
* Improving the typings in many places
* Improving the return type of helpers for TS users ([#3245](https://github.com/codeceptjs/CodeceptJS/issues/3245)) - **[nlespiaucq](https://github.com/nlespiaucq)**

🇺🇦 Added #StandWithUkraine hashtag notice to CLI

## 3.3.0

🛩️ Features:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"mocha-parallel-tests": "^2.3.0",
"nightmare": "^3.0.2",
"nodemon": "^1.19.4",
"playwright": "^1.18.1",
"playwright": "^1.23.2",
"puppeteer": "^10.4.0",
"qrcode-terminal": "^0.12.0",
"rosie": "^1.6.0",
Expand Down
6 changes: 3 additions & 3 deletions test/acceptance/codecept.Playwright.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ module.exports.config = {
restart: process.env.BROWSER_RESTART || false,
browser: process.env.BROWSER || 'chromium',
ignoreHTTPSErrors: true,
webkit: {
ignoreHTTPSErrors: true,
}
webkit: {
ignoreHTTPSErrors: true,
},
},
JSONResponse: {
requestHelper: 'Playwright',
Expand Down