Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2024-01-05 18:08:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-05 18:08:05 +0300
commit4ba8ae97071935c39216afc53304c60386bbfa68 (patch)
tree452038ff8d19dcf69453dde0079b1db4870a3aae /spec/frontend/vue_shared/components
parent7120254aee218529320c061696a2af530494e6aa (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/vue_shared/components')
-rw-r--r--spec/frontend/vue_shared/components/markdown/markdown_editor_spec.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/frontend/vue_shared/components/markdown/markdown_editor_spec.js b/spec/frontend/vue_shared/components/markdown/markdown_editor_spec.js
index edb11bd581b..3b8422d8351 100644
--- a/spec/frontend/vue_shared/components/markdown/markdown_editor_spec.js
+++ b/spec/frontend/vue_shared/components/markdown/markdown_editor_spec.js
@@ -142,23 +142,6 @@ describe('vue_shared/component/markdown/markdown_editor', () => {
);
});
- describe('if gitlab is installed under a relative url', () => {
- beforeEach(() => {
- window.gon = { relative_url_root: '/gitlab' };
- });
-
- it('passes render_quick_actions param to renderMarkdownPath if quick actions are enabled', async () => {
- buildWrapper({ propsData: { supportsQuickActions: true } });
-
- await enableContentEditor();
-
- expect(mock.history.post).toHaveLength(1);
- expect(mock.history.post[0].url).toBe(
- `${window.location.origin}/gitlab/api/markdown?render_quick_actions=true`,
- );
- });
- });
-
it('does not pass render_quick_actions param to renderMarkdownPath if quick actions are disabled', async () => {
buildWrapper({ propsData: { supportsQuickActions: false } });