mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-27 01:22:18 +08:00
23 lines
420 B
TypeScript
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
|
|
}
|