woocommerce-paypal-payments/tests/qa-legacy-ui/resources/orders.ts
2025-07-12 06:45:24 +02:00

19 lines
391 B
TypeScript

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