mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
19 lines
391 B
TypeScript
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 };
|