Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions catalyst_voices/apps/voices/e2e_tests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

# Playwright
node_modules/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
1 change: 1 addition & 0 deletions catalyst_voices/apps/voices/e2e_tests/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22.15.0
11 changes: 11 additions & 0 deletions catalyst_voices/apps/voices/e2e_tests/models/accountModel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export class AccountModel {
constructor(
public id: string,
public name: string,
public email: string = "",
public isEmailVerified: boolean = false,
public password: string,
public isProposer: boolean = false,
public seedPhrase: string[] = []
) {}
}
9 changes: 9 additions & 0 deletions catalyst_voices/apps/voices/e2e_tests/models/testModel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { WalletConfig } from "../utils/wallets/walletUtils";
import { AccountModel } from "./accountModel";

export class TestModel {
constructor(
public accountModel: AccountModel,
public walletConfig: WalletConfig
) {}
}
Loading
Loading