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/runner/local_storage_alert/show_alert_from_local_storage_spec.js')
-rw-r--r--spec/frontend/runner/local_storage_alert/show_alert_from_local_storage_spec.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/spec/frontend/runner/local_storage_alert/show_alert_from_local_storage_spec.js b/spec/frontend/runner/local_storage_alert/show_alert_from_local_storage_spec.js
deleted file mode 100644
index cabbe642dac..00000000000
--- a/spec/frontend/runner/local_storage_alert/show_alert_from_local_storage_spec.js
+++ /dev/null
@@ -1,40 +0,0 @@
-import AccessorUtilities from '~/lib/utils/accessor';
-import { showAlertFromLocalStorage } from '~/runner/local_storage_alert/show_alert_from_local_storage';
-import { LOCAL_STORAGE_ALERT_KEY } from '~/runner/local_storage_alert/constants';
-import { useLocalStorageSpy } from 'helpers/local_storage_helper';
-import { createAlert } from '~/flash';
-
-jest.mock('~/flash');
-
-describe('showAlertFromLocalStorage', () => {
- useLocalStorageSpy();
-
- beforeEach(() => {
- jest.spyOn(AccessorUtilities, 'canUseLocalStorage').mockReturnValue(true);
- });
-
- it('retrieves message from local storage and displays it', async () => {
- const mockAlert = { message: 'Message!' };
-
- localStorage.getItem.mockReturnValueOnce(JSON.stringify(mockAlert));
-
- await showAlertFromLocalStorage();
-
- expect(createAlert).toHaveBeenCalledTimes(1);
- expect(createAlert).toHaveBeenCalledWith(mockAlert);
-
- expect(localStorage.removeItem).toHaveBeenCalledTimes(1);
- expect(localStorage.removeItem).toHaveBeenCalledWith(LOCAL_STORAGE_ALERT_KEY);
- });
-
- it.each(['not a json string', null])('does not fail when stored message is %o', async (item) => {
- localStorage.getItem.mockReturnValueOnce(item);
-
- await showAlertFromLocalStorage();
-
- expect(createAlert).not.toHaveBeenCalled();
-
- expect(localStorage.removeItem).toHaveBeenCalledTimes(1);
- expect(localStorage.removeItem).toHaveBeenCalledWith(LOCAL_STORAGE_ALERT_KEY);
- });
-});