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
390 B
TypeScript
23 lines
390 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { Shop as ShopBase } from '@inpsyde/playwright-utils/build';
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { PayPalUiClassic } from './paypal-ui-classic';
|
|
|
|
export class Shop extends ShopBase {
|
|
payPalUi: PayPalUiClassic;
|
|
|
|
constructor( { page, payPalUi } ) {
|
|
super( { page } );
|
|
this.payPalUi = payPalUi;
|
|
}
|
|
|
|
// Locators
|
|
|
|
// Actions
|
|
|
|
// Assertions
|
|
}
|