Skip to content

Commit aebc584

Browse files
committed
test message
1 parent 34aa49f commit aebc584

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
run: npx playwright install --with-deps chromium
5353

5454
- name: Run E2E tests
55-
run: yarn test:e2e || true # Continue even if E2E tests fail (website might change)
55+
run: yarn test:e2e
56+
continue-on-error: true # Continue workflow even if E2E tests fail, but mark step as failed
5657

5758
- name: Upload test results
5859
if: always()

tests/website/docs.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ test.describe('Documentation Pages', () => {
55
// Navigate to the Quick Start page
66
await page.goto('/docs/quick-start');
77

8-
// Check that the title is correct
9-
await expect(page).toHaveTitle(/Quick Start/);
8+
// Check that the title contains the site name
9+
await expect(page).toHaveTitle(/Console Table Printer/);
1010

1111
// Check that the main heading is present
1212
const heading = page.locator('h1:has-text("Quick Start")');

0 commit comments

Comments
 (0)