-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update playwright monorepo to ^1.40.1 (#2231)
[![Mend Renovate logo banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@playwright/test](https://playwright.dev) ([source](https://togithub.com/microsoft/playwright)) | [`^1.39.0` -> `^1.40.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.39.0/1.40.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2ftest/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@playwright%2ftest/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@playwright%2ftest/1.39.0/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2ftest/1.39.0/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [playwright](https://playwright.dev) ([source](https://togithub.com/microsoft/playwright)) | [`^1.39.0` -> `^1.40.1`](https://renovatebot.com/diffs/npm/playwright/1.39.0/1.40.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/playwright/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/playwright/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/playwright/1.39.0/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/playwright/1.39.0/1.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>microsoft/playwright (@​playwright/test)</summary> ### [`v1.40.1`](https://togithub.com/microsoft/playwright/releases/tag/v1.40.1) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.40.0...v1.40.1) ##### Highlights [https://github.com/microsoft/playwright/issues/28319](https://togithub.com/microsoft/playwright/issues/28319) - \[REGRESSION]: Version 1.40.0 Produces corrupted traces[https://github.com/microsoft/playwright/issues/28371](https://togithub.com/microsoft/playwright/issues/28371)1 - \[BUG] The color of the 'ok' text did not change to green in the vs code test results sectio[https://github.com/microsoft/playwright/issues/28321](https://togithub.com/microsoft/playwright/issues/28321)21 - \[BUG] Ambiguous test outcome and status for serial mo[https://github.com/microsoft/playwright/issues/28362](https://togithub.com/microsoft/playwright/issues/28362)362 - \[BUG] Merging blobs ends up in Error: Cannot create a string longer than 0x1fffffe8 charact[https://github.com/microsoft/playwright/pull/28239](https://togithub.com/microsoft/playwright/pull/28239)8239 - fix: collect all errors in removeFolders ##### Browser Versions - Chromium 120.0.6099.28 - Mozilla Firefox 119.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 119 - Microsoft Edge 119 ### [`v1.40.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.40.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.39.0...v1.40.0) #### Test Generator Update ![Playwright Test Generator](https://togithub.com/microsoft/playwright/assets/9881434/e8d67e2e-f36d-4301-8631-023948d3e190) New tools to generate assertions: - "Assert visibility" tool generates [expect(locator).toBeVisible()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-visible). - "Assert value" tool generates [expect(locator).toHaveValue(value)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-value). - "Assert text" tool generates [expect(locator).toContainText(text)](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-contain-text). Here is an example of a generated test with assertions: ```js import { test, expect } from '@​playwright/test'; test('test', async ({ page }) => { await page.goto('https://playwright.dev/'); await page.getByRole('link', { name: 'Get started' }).click(); await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation'); await expect(page.getByLabel('Search')).toBeVisible(); await page.getByLabel('Search').click(); await page.getByPlaceholder('Search docs').fill('locator'); await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator'); }); ``` #### New APIs - Option `reason` in [page.close()](https://playwright.dev/docs/api/class-page#page-close), [browserContext.close()](https://playwright.dev/docs/api/class-browsercontext#browser-context-close) and [browser.close()](https://playwright.dev/docs/api/class-browser#browser-close). Close reason is reported for all operations interrupted by the closure. - Option `firefoxUserPrefs` in [browserType.launchPersistentContext(userDataDir)](https://playwright.dev/docs/api/class-browsertype#browser-type-launch-persistent-context). #### Other Changes - Methods [download.path()](https://playwright.dev/docs/api/class-download#download-path) and [download.createReadStream()](https://playwright.dev/docs/api/class-download#download-create-read-stream) throw an error for failed and cancelled downloads. - Playwright [docker image](https://playwright.dev/docs/docker) now comes with Node.js v20. #### Browser Versions - Chromium 120.0.6099.28 - Mozilla Firefox 119.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 119 - Microsoft Edge 119 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/fwouts/previewjs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: CI bot <ci-bot@users.noreply.github.com>
- Loading branch information
1 parent
fa1508a
commit f701b65
Showing
96 changed files
with
276 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...plugins/preact/tests/apps/preact-ts/src/components/app_App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/preact/tests/apps/vite-preact/src/app_App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
.../apps/vite-storybook-js/src/stories/Button.stories_Primary_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...s/apps/vite-storybook-js/src/stories/Page.stories_LoggedIn_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
.../apps/vite-storybook-js/src/stories/Page.stories_LoggedOut_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
.../apps/vite-storybook-ts/src/stories/Button.stories_Primary_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...s/apps/vite-storybook-ts/src/stories/Page.stories_LoggedIn_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
.../apps/vite-storybook-ts/src/stories/Page.stories_LoggedOut_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...work-plugins/react/tests/apps/aliases-via-jsconfig/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/aliases/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...ework-plugins/react/tests/apps/class-components-js/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...ework-plugins/react/tests/apps/class-components-ts/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...plugins/react/tests/apps/cra-css-modules-no-suffix/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-css-modules/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-custom-svgr/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...ework-plugins/react/tests/apps/cra-emotion-react16/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-emotion/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-js/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-jsx/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-less/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-react-router/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...lugins/react/tests/apps/cra-sass-modules-no-suffix/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-sass-modules/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-sass/src/App_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...s/apps/cra-storybook-js/src/stories/Button.stories_Primary_screenshot_linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...ts/apps/cra-storybook-js/src/stories/Page.stories_LoggedIn_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...s/apps/cra-storybook-js/src/stories/Page.stories_LoggedOut_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...s/apps/cra-storybook-ts/src/stories/Button.stories_Primary_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...ts/apps/cra-storybook-ts/src/stories/Page.stories_LoggedIn_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...s/apps/cra-storybook-ts/src/stories/Page.stories_LoggedOut_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...ork-plugins/react/tests/apps/cra-styled-components/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-suspense/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-svgr/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...k-plugins/react/tests/apps/cra-tailwind-postcsscjs/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...rk-plugins/react/tests/apps/cra-tailwind-postcssts/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-tailwind/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-ts-react16/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-ts-react18/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/cra-ts/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/imported-types/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/material-ui/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/nextjs-11/pages/index_App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/nextjs-12/pages/index_App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/nextjs-13/pages/index_App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/react-native-web-app/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/storybook-js/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/vite-mobx/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/vite-tailwind/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/vite-ts-react-swc/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...work-plugins/react/tests/apps/vite-vanilla-extract/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/vite-with-svgr/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/vite-without-svgr/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...-plugins/react/tests/apps/wrapper-custom-config-ts/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/wrapper-custom-esm/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/wrapper-custom/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/react/tests/apps/wrapper-default/src/App_screenshot_linux.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ork-plugins/solid/tests/apps/solid-js/src/SolidApp_default_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
framework-plugins/solid/tests/apps/solid-ts/src/App_screenshot_linux.png
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...ts/apps/solidstart-bare-ssr/src/components/Counter_default_screenshot_linux.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.