Skip to content

Commit 484bcc0

Browse files
committed
chore(e2e): testing failed
1 parent 10a78ce commit 484bcc0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
path: playwright-report/
2727
retention-days: 30
2828

29-
# Required check untuk branch protection
3029
e2e-required:
3130
runs-on: ubuntu-latest
3231
needs: test
3332
if: always()
3433
steps:
3534
- name: Check E2E Test Results
3635
run: |
36+
echo "Test job result: ${{ needs.test.result }}"
3737
if [ "${{ needs.test.result }}" != "success" ]; then
3838
echo "E2E tests failed!"
3939
exit 1

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(/Playwright/);
7+
await expect(page).toHaveTitle(/Playwrigsshtssss/);
88
});
99

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

0 commit comments

Comments
 (0)