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>2023-05-03 09:19:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-03 09:19:54 +0300
commit74081733481d7d3d480a5e887ac768fe30f84055 (patch)
tree816e1fbfd090eaf05a2d16a711ff891cb0acbf08 /spec/frontend/notes
parent8d94a37915dfc305c8217fe7e8e4d00928aa88cf (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/notes')
-rw-r--r--spec/frontend/notes/components/notes_app_spec.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/spec/frontend/notes/components/notes_app_spec.js b/spec/frontend/notes/components/notes_app_spec.js
index 3fe31506223..566cf93f688 100644
--- a/spec/frontend/notes/components/notes_app_spec.js
+++ b/spec/frontend/notes/components/notes_app_spec.js
@@ -127,10 +127,12 @@ describe('note_app', () => {
});
it('should render notes activity header', () => {
- expect(wrapper.findComponent(NotesActivityHeader).props()).toEqual({
- notesFilterValue: TEST_NOTES_FILTER_VALUE,
- notesFilters: mockData.notesFilters,
- });
+ expect(wrapper.findComponent(NotesActivityHeader).props().notesFilterValue).toEqual(
+ TEST_NOTES_FILTER_VALUE,
+ );
+ expect(wrapper.findComponent(NotesActivityHeader).props().notesFilters).toEqual(
+ mockData.notesFilters,
+ );
});
});