matrix-art.meta

Issues/PRs archive for MTRNord/matrix-art
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.meta.git
Log | Files | Refs

65.json (8440B)


      1 {
      2   "number": 65,
      3   "title": "Bump @playwright/test from 1.18.1 to 1.19.0",
      4   "state": "merged",
      5   "diff_file": "65.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2022-02-14T08:34:09Z",
      8   "closed_at": "2022-02-14T09:12:31Z",
      9   "merged_at": "2022-02-14T09:12:31Z",
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/playwright/test-1.19.0",
     12   "labels": [
     13     "dependencies",
     14     "javascript"
     15   ],
     16   "assignees": [
     17     "MTRNord"
     18   ],
     19   "requested_reviewers": [
     20     "MTRNord"
     21   ],
     22   "body": "Bumps [@playwright/test](https://github.com/Microsoft/playwright) from 1.18.1 to 1.19.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a href=\"https://github.com/Microsoft/playwright/releases\"><code>@\u200bplaywright/test</code>'s releases</a>.</em></p>\n<blockquote>\n<h2>v1.19.0</h2>\n<h2>Version 1.19</h2>\n<h3>Playwright Test Updates</h3>\n<h4>Soft assertions</h4>\n<p>Playwright Test v1.19 now supports <strong>soft assertions</strong>. Failed soft assertions <strong>do not</strong> terminate test execution, but mark the test as failed. Read more in <a href=\"https://playwright.dev/docs/test-assertions#soft-assertions\">our documentation</a>.</p>\n<pre lang=\"js\"><code>// Make a few checks that will not stop the test when failed...\nawait expect.soft(page.locator('#status')).toHaveText('Success');\nawait expect.soft(page.locator('#eta')).toHaveText('1 day');\n<p>// ... and continue the test to check more things.\nawait page.locator('#next-page').click();\nawait expect.soft(page.locator('#title')).toHaveText('Make another order');\n</code></pre></p>\n<h4>Custom error messages</h4>\n<p>You can now specify a <a href=\"https://playwright.dev/docs/test-assertions#custom-error-message\"><strong>custom error message</strong></a> as a second argument to the <code>expect</code> and <code>expect.soft</code> functions, for example:</p>\n<pre lang=\"js\"><code>await expect(page.locator('text=Name'), 'should be logged in').toBeVisible();\n</code></pre>\n<p>The error would look like this:</p>\n<pre lang=\"bash\"><code>    Error: should be logged in\n<pre><code>Call log:\n  - expect.toBeVisible with timeout 5000ms\n  - waiting for selector &amp;quot;text=Name&amp;quot;\n\n\n  2 |\n  3 | test('example test', async({ page }) =&amp;gt; {\n&amp;gt; 4 |   await expect(page.locator('text=Name'), 'should be logged in').toBeVisible();\n    |                                                                  ^\n  5 | });\n  6 |\n</code></pre>\n<p></code></pre></p>\n<h4>Parallel mode in file</h4>\n<p>By default, tests in a single file are run in order. If you have many independent tests in a single file, you can now\nrun them in parallel with <a href=\"https://playwright.dev/docs/api/class-test#test-describe-configure\"><code>method: test.describe.configure</code></a>:</p>\n<pre lang=\"js\"><code>import { test } from '@playwright/test';\n<p>&lt;/tr&gt;&lt;/table&gt;\n</code></pre></p>\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/microsoft/playwright/commit/03501cfdb2d9ba510150077ea721cdb716b6d0ba\"><code>03501cf</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12048\">#12048</a>): tests: fix installation tests (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12050\">#12050</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/241add240cbbbdcfcd995aa176c81539aebd790d\"><code>241add2</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12025\">#12025</a>): chore(dotnet): do not use global CLI and use ps1 instead...</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/92aa600af211a2205133eba49bcb3438bb9fc1f8\"><code>92aa600</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12045\">#12045</a>): docs: add release notes for all the languages (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12046\">#12046</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/c098cafb7aae1d16b6995b566392d2d0db54b26d\"><code>c098caf</code></a> cherry-pick(release-1.19): chore: fix .NET generation script for .NET 6 (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12041\">#12041</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/aafaa2b9edc8745f9b87fad17d0251980611573a\"><code>aafaa2b</code></a> chore: mark v1.19.0 (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/11981\">#11981</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/b9d665caf0a3c65de36de187b0ae2448977b4f12\"><code>b9d665c</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12003\">#12003</a>): docs: avoid .net version ambiguity (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12040\">#12040</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/1d4521a12e6867a4a4b5a22b818f09cb32cc0bd9\"><code>1d4521a</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12036\">#12036</a>): docs: fix release notes headers (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12037\">#12037</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/7a683a9331447f71978eb36551c1de96bffd1990\"><code>7a683a9</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12019\">#12019</a>) docs: add release notes for 1.19 (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12034\">#12034</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/ca116db2cbad170e76e8b088db34236ae0faf22c\"><code>ca116db</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12016\">#12016</a>): fix(reporters): correctly handle missing stdout.columns ...</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/8a52c3ca7679a4b3711a20d4d6f3d0490ef99690\"><code>8a52c3c</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/12022\">#12022</a>): chore: don't close page in generated test</li>\n<li>Additional commits viewable in <a href=\"https://github.com/Microsoft/playwright/compare/v1.18.1...v1.19.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@playwright/test&package-manager=npm_and_yarn&previous-version=1.18.1&new-version=1.19.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@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)\n- `@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)\n- `@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)\n\n\n</details>",
     23   "comments": [],
     24   "review_comments": []
     25 }