Files
myeasycms-v2/apps/e2e/tests/team-billing/team-billing.po.ts
giancarlo 2ff08a971d Update Zod package, improve code formatting, and add awaiting indicators
This commit includes three main changes. First, it updates the Zod library from version 3.23.4 to 3.23.5 across all relevant packages. Second, code readability has been enhanced by formatting modifications in several TypeScript files. Lastly, the user feedback on certain operations such as creating a team or charging for a payment is strengthened, by displaying an awaiting indicator until the operation is complete.
2024-04-30 13:16:51 +07:00

19 lines
511 B
TypeScript

import { Page } from '@playwright/test';
import { TeamAccountsPageObject } from '../team-accounts/team-accounts.po';
import { BillingPageObject } from '../utils/billing.po';
export class TeamBillingPageObject {
public readonly teamAccounts: TeamAccountsPageObject;
public readonly billing: BillingPageObject;
constructor(page: Page) {
this.teamAccounts = new TeamAccountsPageObject(page);
this.billing = new BillingPageObject(page);
}
setup() {
return this.teamAccounts.setup();
}
}