FE: Remove legacy approval feature in MR files

This commit is contained in:
Paul Slaughter 2019-05-30 17:39:42 -05:00 committed by Mark Chao
parent 554fbb2a49
commit c1bb78a0ce
1 changed files with 0 additions and 2 deletions

View File

@ -21,7 +21,6 @@ describe('mrWidgetOptions', () => {
const COLLABORATION_MESSAGE = 'Allows commits from members who can merge to the target branch';
beforeEach(() => {
gon.features = { approvalRules: false };
// Prevent component mounting
delete mrWidgetOptions.el;
@ -32,7 +31,6 @@ describe('mrWidgetOptions', () => {
});
afterEach(() => {
gon.features = null;
vm.$destroy();
});