Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump playwright from 1.18.1 to 1.19.0 in /ui #705

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 14, 2022

Bumps playwright from 1.18.1 to 1.19.0.

Release notes

Sourced from playwright's releases.

v1.19.0

Version 1.19

Playwright Test Updates

Soft assertions

Playwright Test v1.19 now supports soft assertions. Failed soft assertions do not terminate test execution, but mark the test as failed. Read more in our documentation.

// Make a few checks that will not stop the test when failed...
await expect.soft(page.locator('#status')).toHaveText('Success');
await expect.soft(page.locator('#eta')).toHaveText('1 day');
// ... and continue the test to check more things.
await page.locator('#next-page').click();
await expect.soft(page.locator('#title')).toHaveText('Make another order');

Custom error messages

You can now specify a custom error message as a second argument to the expect and expect.soft functions, for example:

await expect(page.locator('text=Name'), 'should be logged in').toBeVisible();

The error would look like this:

    Error: should be logged in
Call log:
  - expect.toBeVisible with timeout 5000ms
  - waiting for selector "text=Name"
2 |
3 | test('example test', async({ page }) => {
> 4 |   await expect(page.locator('text=Name'), 'should be logged in').toBeVisible();
|                                                                  ^
5 | });
6 |

Parallel mode in file

By default, tests in a single file are run in order. If you have many independent tests in a single file, you can now run them in parallel with method: test.describe.configure:

import { test } from '@playwright/test';
</tr></table>

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript labels Feb 14, 2022
@dependabot dependabot bot requested a review from markphelps February 14, 2022 02:10
@codecov-commenter
Copy link

codecov-commenter commented Feb 14, 2022

Codecov Report

Merging #705 (18d720c) into master (8b12073) will not change coverage.
The diff coverage is n/a.

❗ Current head 18d720c differs from pull request most recent head c0b4def. Consider uploading reports for the commit c0b4def to get more accurate results

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #705   +/-   ##
=======================================
  Coverage   82.75%   82.75%           
=======================================
  Files          19       19           
  Lines        1693     1693           
=======================================
  Hits         1401     1401           
  Misses        246      246           
  Partials       46       46           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 8b12073...c0b4def. Read the comment docs.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ui/playwright-1.19.0 branch 3 times, most recently from a12dab2 to 18d720c Compare February 16, 2022 00:59
Bumps [playwright](https://github.com/Microsoft/playwright) from 1.18.1 to 1.19.0.
- [Release notes](https://github.com/Microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.18.1...v1.19.0)

---
updated-dependencies:
- dependency-name: playwright
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ui/playwright-1.19.0 branch from 18d720c to c0b4def Compare February 16, 2022 01:04
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 16, 2022

Superseded by #709.

@dependabot dependabot bot closed this Feb 16, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/ui/playwright-1.19.0 branch February 16, 2022 01:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants