woocommerce-paypal-payments/tests/qa-legacy-ui/utils/frontend/customer-subscriptions.ts
Misha Utkin 9f1445265d
Migrate tests for legacy UI
- Tests migration
- Tests correction
- Folder structure and file naming fixes
2025-04-30 06:48:12 +02:00

23 lines
420 B
TypeScript

/**
* External dependencies
*/
import { CustomerSubscriptions as CustomerSubscriptionsBase } from '@inpsyde/playwright-utils/build';
/**
* Internal dependencies
*/
import { PayPalUI } from './paypal-ui';
export class CustomerSubscriptions extends CustomerSubscriptionsBase {
ppui: PayPalUI;
constructor( { page, ppui } ) {
super( { page } );
this.ppui = ppui;
}
// Locators
// Actions
// Assertions
}