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>2020-03-02 09:08:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-02 09:08:01 +0300
commit8fb943c7df5f2b399caaeaebd6c00d0630bc763c (patch)
tree8d35d09078b03ff3db3a860babe8e6918eab8671 /spec/frontend/notes/stores
parent47946d47f3d8906b622cb27605195ea0ffcb095c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/notes/stores')
-rw-r--r--spec/frontend/notes/stores/getters_spec.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/frontend/notes/stores/getters_spec.js b/spec/frontend/notes/stores/getters_spec.js
index 83417bd70ef..1ade9464128 100644
--- a/spec/frontend/notes/stores/getters_spec.js
+++ b/spec/frontend/notes/stores/getters_spec.js
@@ -35,6 +35,7 @@ describe('Getters Notes Store', () => {
notesData: notesDataMock,
userData: userDataMock,
noteableData: noteableDataMock,
+ descriptionVersion: 'descriptionVersion',
};
});
@@ -385,4 +386,10 @@ describe('Getters Notes Store', () => {
expect(getters.getDiscussion(state)('1')).toEqual({ id: '1' });
});
});
+
+ describe('descriptionVersion', () => {
+ it('should return `descriptionVersion`', () => {
+ expect(getters.descriptionVersion(state)).toEqual('descriptionVersion');
+ });
+ });
});