2020-04-08 14:13:33 +05:30
|
|
|
// NOTE:
|
|
|
|
// These imports are pulled from 'monaco-editor/esm/vs/editor/editor.main.js'
|
|
|
|
// We don't want to include 'monaco-editor/esm/vs/editor/edcore' because it causes
|
|
|
|
// lots of compatability issues with Jest
|
|
|
|
// Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/209863
|
|
|
|
import 'monaco-editor/esm/vs/language/typescript/monaco.contribution';
|
|
|
|
import 'monaco-editor/esm/vs/language/css/monaco.contribution';
|
|
|
|
import 'monaco-editor/esm/vs/language/json/monaco.contribution';
|
|
|
|
import 'monaco-editor/esm/vs/language/html/monaco.contribution';
|
|
|
|
import 'monaco-editor/esm/vs/basic-languages/monaco.contribution';
|
2020-10-24 23:57:45 +05:30
|
|
|
import 'monaco-yaml/lib/esm/monaco.contribution';
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
// This language starts trying to spin up web workers which obviously breaks in Jest environment
|
|
|
|
jest.mock('monaco-editor/esm/vs/language/typescript/tsMode');
|
2020-10-24 23:57:45 +05:30
|
|
|
jest.mock('monaco-yaml/lib/esm/yamlMode');
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
export * from 'monaco-editor/esm/vs/editor/editor.api';
|
|
|
|
export default global.monaco;
|