Skip to content

Commit 03b1041

Browse files
committed
chore(e2e): testing success
1 parent 484bcc0 commit 03b1041

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

.github/workflows/playwright.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,3 @@ jobs:
2525
name: playwright-report
2626
path: playwright-report/
2727
retention-days: 30
28-
29-
e2e-required:
30-
runs-on: ubuntu-latest
31-
needs: test
32-
if: always()
33-
steps:
34-
- name: Check E2E Test Results
35-
run: |
36-
echo "Test job result: ${{ needs.test.result }}"
37-
if [ "${{ needs.test.result }}" != "success" ]; then
38-
echo "E2E tests failed!"
39-
exit 1
40-
fi
41-
echo "E2E tests passed!"

tests/e2e/example.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test("has title", async ({ page }) => {
44
await page.goto("https://playwright.dev/");
55

66
// Expect a title "to contain" a substring.
7-
await expect(page).toHaveTitle(/Playwrigsshtssss/);
7+
await expect(page).toHaveTitle(/Playwright/);
88
});
99

1010
test("get started link", async ({ page }) => {

0 commit comments

Comments
 (0)