Skip to content

Commit 2d2eb0f

Browse files
committed
Add failure to test Copy Prompt in the html report
1 parent f1ebe80 commit 2d2eb0f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
~/.cache/ms-playwright
3232
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
3333
- name: Install Playwright Browsers for current OS and playwright version if not cached yet
34-
run: npx playwright install --with-deps --only-shell chromium
34+
run: npx playwright install --with-deps chromium
3535
if: steps.playwright-cache.outputs.cache-hit != 'true'
3636

3737
- name: Run Playwright tests

actions-ui/navigation.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ let page: Page;
44

55
// App navigation config
66
const routes: { [key: string]: string } = {
7-
base: "",
8-
login: "login",
9-
home: "home",
7+
base: "/",
8+
login: "/login",
9+
home: "/home1",
1010
};
1111

1212
const qaId = (id: string): string => `[data-qa-id="${id}"]`;

playwright.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export default defineConfig({
4646
name: "chromium",
4747
use: {
4848
...devices["Desktop Chrome"] ,
49+
channel: 'chromium',
4950
},
5051
},
5152
],

0 commit comments

Comments
 (0)