Skip to content

Commit 83cd80d

Browse files
committed
Revert failure change
1 parent c2f7c04 commit 83cd80d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

actions-ui/navigation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let page: Page;
66
const routes: { [key: string]: string } = {
77
base: "/",
88
login: "/login",
9-
home: "/home1",
9+
home: "/home",
1010
};
1111

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

playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export default defineConfig({
2727
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
2828
reporter: process.env.CI
2929
? [["list"], ["github"], ["html", { open: "never" }]]
30-
: "list",
31-
captureGitInfo: {commit: true, diff: true},
30+
: "html",
31+
captureGitInfo: {diff: true},
3232
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
3333
use: {
3434
/* Base URL to use in actions like `await page.goto('/')`. */

0 commit comments

Comments
 (0)