Skip to content

Commit b9159e5

Browse files
authored
Fix failing e2e tests due to changes in previous commit (#367)
1 parent 68e6551 commit b9159e5

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

src/Turnierplan.App/Client/e2e/consts/turnierplan.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export const turnierplan = {
1414
logoLink: 'header-logo-link'
1515
},
1616
landingPage: {
17-
organizationsPageId: 0,
1817
newOrganizationButton: 'landing-page-new-organization-button'
1918
},
2019
loginPage: {

src/Turnierplan.App/Client/e2e/pages/landing-page.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export class LandingPage {
55
constructor(private readonly page: Page) {}
66

77
public async createOrganization(name: string): Promise<void> {
8-
await this.page.getByTestId(turnierplan.pageFrame.navigationTab(turnierplan.landingPage.organizationsPageId)).click();
98
await this.page.getByTestId(turnierplan.landingPage.newOrganizationButton).click();
109
await this.page.getByTestId(turnierplan.createOrganizationPage.organizationNameField).fill(name);
1110
await this.page.getByTestId(turnierplan.createOrganizationPage.confirmButton).click();

0 commit comments

Comments
 (0)