Commit f7af6fb4 authored by Phil Hughes's avatar Phil Hughes

ee widget_options spec fix

parent 6abbe64d
......@@ -784,6 +784,12 @@ describe('ee merge request widget options', () => {
describe('rendering source branch removal status', () => {
it('renders when user cannot remove branch and branch should be removed', (done) => {
vm = mountComponent(Component, {
mrData: {
...mockData,
},
});
vm.mr.canRemoveSourceBranch = false;
vm.mr.shouldRemoveSourceBranch = true;
......
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