Skip to content

Commit 301e7b3

Browse files
committed
fix(e2e): adds missing fullName to config seed repos
1 parent 8736043 commit 301e7b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

e2e/settings.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function setupAuth(page: Page) {
3535
"github-tracker:config",
3636
JSON.stringify({
3737
selectedOrgs: ["testorg"],
38-
selectedRepos: [{ owner: "testorg", name: "testrepo" }],
38+
selectedRepos: [{ owner: "testorg", name: "testrepo", fullName: "testorg/testrepo" }],
3939
onboardingComplete: true,
4040
})
4141
);

e2e/smoke.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function setupAuth(page: Page) {
4545
"github-tracker:config",
4646
JSON.stringify({
4747
selectedOrgs: ["testorg"],
48-
selectedRepos: [{ owner: "testorg", name: "testrepo" }],
48+
selectedRepos: [{ owner: "testorg", name: "testrepo", fullName: "testorg/testrepo" }],
4949
onboardingComplete: true,
5050
})
5151
);
@@ -98,7 +98,7 @@ test("OAuth callback flow completes and redirects", async ({ page }) => {
9898
"github-tracker:config",
9999
JSON.stringify({
100100
selectedOrgs: ["testorg"],
101-
selectedRepos: [{ owner: "testorg", name: "testrepo" }],
101+
selectedRepos: [{ owner: "testorg", name: "testrepo", fullName: "testorg/testrepo" }],
102102
onboardingComplete: true,
103103
})
104104
);

0 commit comments

Comments
 (0)