Fix issue causing newsletter tests to fail

Accessing wp from global scope was making the tests fail

[MAILPOET-4908]
This commit is contained in:
Sam Najian
2023-01-04 19:46:32 +01:00
committed by Aschepikov
parent c54a414d51
commit befe68b721

View File

@@ -36,6 +36,11 @@ global.$ = jQuery;
global.jQuery = jQuery;
global.window.jQuery = jQuery;
global._ = _;
global.window.wp = global.window.wp || {
i18n: {
getLocaleData: () => {},
},
};
testHelpers.loadScript(
'tests/javascript_newsletter_editor/testBundles/vendor.js',