woocommerce/plugins/woocommerce-admin/tests/js/setup-globals.js

41 lines
870 B
JavaScript
Raw Normal View History

/** @format */
/**
* External dependencies
*/
import { setLocaleData } from '@wordpress/i18n';
// Set up `wp.*` aliases. Doing this because any tests importing wp stuff will
// likely run into this.
global.wp = {
shortcode: {
next() {},
regexp: jest.fn().mockReturnValue( new RegExp() ),
},
};
global.wc = {};
Object.defineProperty( global.wp, 'element', {
get: () => require( '@wordpress/element' ),
} );
Object.defineProperty( global.wp, 'date', {
get: () => require( '@wordpress/date' ),
} );
Object.defineProperty( global.wc, 'components', {
get: () => require( '@woocommerce/components' ),
} );
global.wcSettings = {
adminUrl: 'https://vagrant.local/wp/wp-admin/',
locale: 'en-US',
currency: { code: 'USD', precision: 2, symbol: '$' },
2018-07-04 01:50:12 +00:00
date: {
dow: 0,
},
};
2018-05-28 10:55:19 +00:00
setLocaleData( { '': { domain: 'wc-admin', lang: 'en_US' } }, 'wc-admin' );