summaryrefslogtreecommitdiff
path: root/spec/frontend/notes
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-03 06:19:54 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-03 06:19:54 +0000
commit74081733481d7d3d480a5e887ac768fe30f84055 (patch)
tree816e1fbfd090eaf05a2d16a711ff891cb0acbf08 /spec/frontend/notes
parent8d94a37915dfc305c8217fe7e8e4d00928aa88cf (diff)
downloadgitlab-ce-74081733481d7d3d480a5e887ac768fe30f84055.tar.gz
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,
+ );
});
});