Skip to content

Commit 2ef446e

Browse files
authored
* deps: Bump [email protected] [INT-74] * deps: Bump playwright-reporter package * tests: Add a tag to post release test * tests: Tag a cloud test
1 parent 586b9c5 commit 2ef446e

File tree

4 files changed

+26
-22
lines changed

4 files changed

+26
-22
lines changed

package-lock.json

+21-17
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
@@ -31,12 +31,12 @@
3131
},
3232
"homepage": "https://github.com/saucelabs/sauce-playwright-runner",
3333
"dependencies": {
34-
"@playwright/test": "1.49.1",
35-
"@saucelabs/playwright-reporter": "1.5.0",
34+
"@playwright/test": "1.50.1",
35+
"@saucelabs/playwright-reporter": "1.6.0",
3636
"@saucelabs/testcomposer": "3.0.2",
3737
"dotenv": "16.4.7",
3838
"lodash": "4.17.21",
39-
"playwright": "1.49.1",
39+
"playwright": "1.50.1",
4040
"sauce-testrunner-utils": "3.3.0",
4141
"xml-js": "1.6.11"
4242
},

tests/fixtures/cloud/tests/no-sc/demo.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
const { test, expect } = require('@playwright/test');
1717
const prettySeconds = require('pretty-seconds');
1818

19-
test('is a basic test with the page', async ({ page }) => {
19+
test('is a basic test with the page @basic', async ({ page }) => {
2020
await page.goto('https://playwright.dev/');
2121
expect(prettySeconds(80)).toBe('1 minute and 20 seconds');
2222
expect(await page.innerText('.navbar__title')).toBe('Playwright');

tests/fixtures/post-release/tests/test.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
const { test, expect } = require('@playwright/test');
1717
const prettySeconds = require('pretty-seconds');
1818

19-
test('is a basic test with the page', async ({ page }) => {
19+
test('is a basic test with the page @tagged', async ({ page }) => {
2020
await page.goto('https://playwright.dev/');
2121
expect(prettySeconds(80)).toBe('1 minute and 20 seconds');
2222
expect(await page.innerText('.navbar__title')).toBe('Playwright');

0 commit comments

Comments
 (0)