Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mutations_spec.js « store « self_monitor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5282ae3b2f5052d2c9c2774a3e24c6d0818ec2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import mutations from '~/self_monitor/store/mutations';
import createState from '~/self_monitor/store/state';

describe('self monitoring mutations', () => {
  let localState;

  beforeEach(() => {
    localState = createState();
  });

  describe('SET_ENABLED', () => {
    it('sets selfMonitor', () => {
      mutations.SET_ENABLED(localState, true);

      expect(localState.projectEnabled).toBe(true);
    });
  });

  describe('SET_PROJECT_CREATED', () => {
    it('sets projectCreated', () => {
      mutations.SET_PROJECT_CREATED(localState, true);

      expect(localState.projectCreated).toBe(true);
    });
  });

  describe('SET_SHOW_ALERT', () => {
    it('sets showAlert', () => {
      mutations.SET_SHOW_ALERT(localState, true);

      expect(localState.showAlert).toBe(true);
    });
  });

  describe('SET_PROJECT_URL', () => {
    it('sets projectPath', () => {
      mutations.SET_PROJECT_URL(localState, '/url/');

      expect(localState.projectPath).toBe('/url/');
    });
  });

  describe('SET_LOADING', () => {
    it('sets loading', () => {
      mutations.SET_LOADING(localState, true);

      expect(localState.loading).toBe(true);
    });
  });

  describe('SET_ALERT_CONTENT', () => {
    it('set alertContent', () => {
      const alertContent = {
        message: 'success',
        actionText: 'undo',
        actionName: 'createProject',
      };

      mutations.SET_ALERT_CONTENT(localState, alertContent);

      expect(localState.alertContent).toBe(alertContent);
    });
  });
});