debian-mirror-gitlab/spec/frontend_integration/ide/helpers/start.js

30 lines
912 B
JavaScript
Raw Normal View History

2021-02-22 17:27:13 +05:30
import { TEST_HOST } from 'helpers/test_constants';
import extendStore from '~/ide/stores/extend';
import { IDE_DATASET } from './mock_data';
import { initIde } from '~/ide';
2021-03-08 18:12:59 +05:30
import Editor from '~/ide/lib/editor';
2021-02-22 17:27:13 +05:30
export default (container, { isRepoEmpty = false, path = '' } = {}) => {
global.jsdom.reconfigure({
url: `${TEST_HOST}/-/ide/project/gitlab-test/lorem-ipsum${
isRepoEmpty ? '-empty' : ''
}/tree/master/-/${path}`,
});
const el = document.createElement('div');
Object.assign(el.dataset, IDE_DATASET);
container.appendChild(el);
2021-03-08 18:12:59 +05:30
const vm = initIde(el, { extendStore });
// We need to dispose of editor Singleton things or tests will bump into eachother
vm.$on('destroy', () => {
if (Editor.editorInstance) {
Editor.editorInstance.modelManager.dispose();
Editor.editorInstance.dispose();
Editor.editorInstance = null;
}
});
return vm;
2021-02-22 17:27:13 +05:30
};