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:
Diffstat (limited to 'spec/frontend/diffs/store/mutations_spec.js')
-rw-r--r--spec/frontend/diffs/store/mutations_spec.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/frontend/diffs/store/mutations_spec.js b/spec/frontend/diffs/store/mutations_spec.js
index eb31724ee45..b549ca42634 100644
--- a/spec/frontend/diffs/store/mutations_spec.js
+++ b/spec/frontend/diffs/store/mutations_spec.js
@@ -115,19 +115,6 @@ describe('DiffsStoreMutations', () => {
});
});
- describe('SET_CODEQUALITY_DATA', () => {
- it('should set codequality data', () => {
- const state = { codequalityDiff: {} };
- const codequality = {
- files: { 'app.js': [{ line: 1, description: 'Unexpected alert.', severity: 'minor' }] },
- };
-
- mutations[types.SET_CODEQUALITY_DATA](state, codequality);
-
- expect(state.codequalityDiff).toEqual(codequality);
- });
- });
-
describe('SET_DIFF_VIEW_TYPE', () => {
it('should set diff view type properly', () => {
const state = {};