woocommerce-paypal-payments/tests/qa/resources/orders.ts
Sedat a956444602
Initial commit for QA folder
POM files created.
Visual tests moved to PCP repo.
Irrelevant files removed.
2025-02-05 16:40:30 +03:00

17 lines
339 B
TypeScript

/**
* External dependencies
*/
import { orders } from '@inpsyde/playwright-utils/build/e2e/plugins/woocommerce';
/**
* Internal dependencies
*/
import { merchants } from '.';
const country = 'germany';
const merchant = merchants[ country ];
for ( const order in orders ) {
orders[ order ].merchant = merchant;
}
export { orders };