Skip to content
代码片段 群组 项目
提交 89f2edea 编辑于 作者: Natalia Tepluhina's avatar Natalia Tepluhina
浏览文件

Merge branch 'xanf-magic-vue-mock' into 'master'

Implement early mock of the Vue.js 3 to configure compat

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/125738



Merged-by: default avatarNatalia Tepluhina <ntepluhina@gitlab.com>
Approved-by: default avatarNatalia Tepluhina <ntepluhina@gitlab.com>
Co-authored-by: default avatarIllya <iklymov@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -76,6 +76,26 @@ if (global.document) { ...@@ -76,6 +76,26 @@ if (global.document) {
Vue.configureCompat(compatConfig); Vue.configureCompat(compatConfig);
installVTUCompat(VTU, fullCompatConfig, compatH); installVTUCompat(VTU, fullCompatConfig, compatH);
jest.mock('vue', () => {
const actualVue = jest.requireActual('vue');
actualVue.configureCompat(compatConfig);
return actualVue;
});
jest.mock('portal-vue', () => ({
__esModule: true,
default: {
install: jest.fn(),
},
Portal: {},
PortalTarget: {},
MountingPortal: {
template: '<h1>MOUNTING-PORTAL</h1>',
},
Wormhole: {},
}));
VTU.config.global.renderStubDefaultSlot = true; VTU.config.global.renderStubDefaultSlot = true;
const noop = () => {}; const noop = () => {};
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册