Commit 77ffe60c authored by Paul Slaughter's avatar Paul Slaughter

Merge branch '66331-html-code-shown-in-merge-request' into 'master'

Resolve "HTML code shown in merge request"

Closes #66331

See merge request gitlab-org/gitlab-ce!32032
parents ef0f1509 b7e6c898
...@@ -50,6 +50,7 @@ export default { ...@@ -50,6 +50,7 @@ export default {
startTag: '<span class="label-branch">', startTag: '<span class="label-branch">',
endTag: '</span>', endTag: '</span>',
}, },
false,
); );
}, },
}, },
......
---
title: Fix HTML rendering for fast-forward rebases in merge request widget
merge_request: 32032
author:
type: fixed
...@@ -83,6 +83,24 @@ describe('Merge request widget rebase component', () => { ...@@ -83,6 +83,24 @@ describe('Merge request widget rebase component', () => {
expect(text).toContain('foo'); expect(text).toContain('foo');
expect(text.replace(/\s\s+/g, ' ')).toContain('to allow this merge request to be merged.'); expect(text.replace(/\s\s+/g, ' ')).toContain('to allow this merge request to be merged.');
}); });
it('should render the correct target branch name', () => {
const targetBranch = 'fake-branch-to-test-with';
vm = mountComponent(Component, {
mr: {
rebaseInProgress: false,
canPushToSourceBranch: false,
targetBranch,
},
service: {},
});
const elem = vm.$el.querySelector('.rebase-state-find-class-convention span');
expect(elem.innerHTML).toContain(
`Fast-forward merge is not possible. Rebase the source branch onto <span class="label-branch">${targetBranch}</span> to allow this merge request to be merged.`,
);
});
}); });
describe('methods', () => { describe('methods', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment