Skip to content

Commit 8fb9eeb

Browse files
committed
test: Operationalize playwright tests
1 parent 72bbf43 commit 8fb9eeb

File tree

6 files changed

+2266
-2452
lines changed

6 files changed

+2266
-2452
lines changed

.github/workflows/test.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,35 @@ jobs:
4343
continue-on-error: true
4444
- run: yarn tsc
4545
- run: yarn test
46+
test-playwright:
47+
runs-on: ubuntu-latest
48+
permissions:
49+
actions: none
50+
checks: write
51+
contents: none
52+
deployments: none
53+
issues: none
54+
packages: none
55+
pull-requests: none
56+
repository-projects: none
57+
security-events: none
58+
statuses: none
59+
id-token: none
60+
steps:
61+
- uses: actions/checkout@v4
62+
with:
63+
fetch-depth: 0
64+
- name: Use Node.js
65+
uses: actions/setup-node@v4
66+
with:
67+
node-version: 22
68+
cache: 'yarn'
69+
- run: yarn install --immutable
70+
- run: npx playwright install --with-deps
71+
- run: npx playwright test
72+
- uses: actions/upload-artifact@v4
73+
if: ${{ !cancelled() }}
74+
with:
75+
name: playwright-report
76+
path: playwright-report/
77+
retention-days: 30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/dist/playwright.cjs.js b/dist/playwright.cjs.js
2+
index c89c0d982319b8fbc8b6c27814e14d373c5a1e2e..1e69eac0c07472dd3a396aca88a8574a415b2ecd 100644
3+
--- a/dist/playwright.cjs.js
4+
+++ b/dist/playwright.cjs.js
5+
@@ -20,7 +20,7 @@ function generateProjects() {
6+
name: pkg.packageJson.name,
7+
testDir: path.resolve(pkg.dir, "e2e-tests"),
8+
use: {
9+
- channel: "chrome"
10+
+ channel: "chromium"
11+
}
12+
}));
13+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"devDependencies": {
3232
"@backstage/cli": "backstage:^",
33-
"@backstage/e2e-test-utils": "backstage:^",
33+
"@backstage/e2e-test-utils": "patch:@backstage/e2e-test-utils@npm%3A0.1.1#~/.yarn/patches/@backstage-e2e-test-utils-npm-0.1.1-chromium.patch",
3434
"@playwright/test": "^1.50.0",
3535
"@types/react": "^18",
3636
"@types/react-dom": "^18",

packages/app/e2e-tests/app.test.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ import { test, expect } from '@playwright/test';
1818
test('App should render the welcome page', async ({ page }) => {
1919
await page.goto('/');
2020

21-
const enterButton = page.getByRole('button', { name: 'Enter' });
21+
await expect(page.getByText('RaBe Backstage')).toBeVisible();
22+
23+
const enterButton = page.getByRole('button', { name: 'Sign In' });
2224
await expect(enterButton).toBeVisible();
23-
await enterButton.click();
2425

25-
await expect(page.getByText('My Company Catalog')).toBeVisible();
26+
await expect(page).toHaveScreenshot();
2627
});

0 commit comments

Comments
 (0)