Skip to content

Commit 424cd57

Browse files
committed
chore: remove unused code
1 parent 4e14684 commit 424cd57

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/page-objects/src/testDapp.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { HTMLElement, PageObject } from "@assert-equals/dappdriver";
22
import { Connect } from "@assert-equals/dappdriver/wallet";
33

44
export class Dapp extends PageObject {
5-
private readonly providerButtton: () => HTMLElement = (): HTMLElement =>
6-
new HTMLElement("#provider");
75
private readonly accountsLabel: () => HTMLElement = (): HTMLElement =>
86
new HTMLElement("#accounts");
97
private readonly connectButton: () => HTMLElement = (): HTMLElement =>
@@ -13,10 +11,6 @@ export class Dapp extends PageObject {
1311
super("http://localhost:3000/", "E2E Test Dapp");
1412
}
1513

16-
async useProvider(): Promise<void> {
17-
return await this.providerButtton().click();
18-
}
19-
2014
async getAccounts(): Promise<string> {
2115
return await this.accountsLabel().getText();
2216
}

0 commit comments

Comments
 (0)