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/super_sidebar/user_counts_manager_spec.js')
-rw-r--r--spec/frontend/super_sidebar/user_counts_manager_spec.js30
1 files changed, 23 insertions, 7 deletions
diff --git a/spec/frontend/super_sidebar/user_counts_manager_spec.js b/spec/frontend/super_sidebar/user_counts_manager_spec.js
index b5074620195..3b2ee5b0991 100644
--- a/spec/frontend/super_sidebar/user_counts_manager_spec.js
+++ b/spec/frontend/super_sidebar/user_counts_manager_spec.js
@@ -6,6 +6,7 @@ import {
userCounts,
destroyUserCountsManager,
} from '~/super_sidebar/user_counts_manager';
+import { fetchUserCounts } from '~/super_sidebar/user_counts_fetch';
jest.mock('~/api');
@@ -118,15 +119,30 @@ describe('User Merge Requests', () => {
createUserCountsManager();
});
- it('fetches counts from API, stores and rebroadcasts them', async () => {
- expect(userCounts).toMatchObject(userCountDefaults);
+ describe('manually created event', () => {
+ it('fetches counts from API, stores and rebroadcasts them', async () => {
+ expect(userCounts).toMatchObject(userCountDefaults);
+
+ document.dispatchEvent(new CustomEvent('userCounts:fetch'));
+ await waitForPromises();
+
+ expect(UserApi.getUserCounts).toHaveBeenCalled();
+ expect(userCounts).toMatchObject(userCountUpdate);
+ expect(channelMock.postMessage).toHaveBeenLastCalledWith(userCounts);
+ });
+ });
+
+ describe('fetchUserCounts helper', () => {
+ it('fetches counts from API, stores and rebroadcasts them', async () => {
+ expect(userCounts).toMatchObject(userCountDefaults);
- document.dispatchEvent(new CustomEvent('userCounts:fetch'));
- await waitForPromises();
+ fetchUserCounts();
+ await waitForPromises();
- expect(UserApi.getUserCounts).toHaveBeenCalled();
- expect(userCounts).toMatchObject(userCountUpdate);
- expect(channelMock.postMessage).toHaveBeenLastCalledWith(userCounts);
+ expect(UserApi.getUserCounts).toHaveBeenCalled();
+ expect(userCounts).toMatchObject(userCountUpdate);
+ expect(channelMock.postMessage).toHaveBeenLastCalledWith(userCounts);
+ });
});
});