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