Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Operationalize playwright tests #550

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,35 @@ jobs:
continue-on-error: true
- run: yarn tsc
- run: yarn test
test-playwright:
runs-on: ubuntu-latest
permissions:
actions: none
checks: write
contents: none
deployments: none
issues: none
packages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
id-token: none
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
- run: yarn install --immutable
- run: npx playwright install --with-deps
- run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
13 changes: 13 additions & 0 deletions .yarn/patches/@backstage-e2e-test-utils-npm-0.1.1-chromium.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/dist/playwright.cjs.js b/dist/playwright.cjs.js
index c89c0d982319b8fbc8b6c27814e14d373c5a1e2e..1e69eac0c07472dd3a396aca88a8574a415b2ecd 100644
--- a/dist/playwright.cjs.js
+++ b/dist/playwright.cjs.js
@@ -20,7 +20,7 @@ function generateProjects() {
name: pkg.packageJson.name,
testDir: path.resolve(pkg.dir, "e2e-tests"),
use: {
- channel: "chrome"
+ channel: "chromium"
}
}));
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@backstage/e2e-test-utils": "backstage:^",
"@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",
"@playwright/test": "^1.50.0",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand Down
7 changes: 4 additions & 3 deletions packages/app/e2e-tests/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ import { test, expect } from '@playwright/test';
test('App should render the welcome page', async ({ page }) => {
await page.goto('/');

const enterButton = page.getByRole('button', { name: 'Enter' });
await expect(page.getByText('RaBe Backstage')).toBeVisible();

const enterButton = page.getByRole('button', { name: 'Sign In' });
await expect(enterButton).toBeVisible();
await enterButton.click();

await expect(page.getByText('My Company Catalog')).toBeVisible();
await expect(page).toHaveScreenshot();
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading