summaryrefslogtreecommitdiff
path: root/spec/frontend/whats_new/store/mutations_spec.js
blob: feaa1dd2a3b55c977d7e9088e3466bb3debb5341 (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
import mutations from '~/whats_new/store/mutations';
import createState from '~/whats_new/store/state';
import * as types from '~/whats_new/store/mutation_types';

describe('whats new mutations', () => {
  let state;

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

  describe('openDrawer', () => {
    it('sets open to true', () => {
      mutations[types.OPEN_DRAWER](state);
      expect(state.open).toBe(true);
    });
  });

  describe('closeDrawer', () => {
    it('sets open to false', () => {
      mutations[types.CLOSE_DRAWER](state);
      expect(state.open).toBe(false);
    });
  });

  describe('setFeatures', () => {
    it('sets features to data', () => {
      mutations[types.SET_FEATURES](state, 'bells and whistles');
      expect(state.features).toBe('bells and whistles');
    });
  });
});