summaryrefslogtreecommitdiff
path: root/spec/frontend/jira_connect/store/mutations_spec.js
blob: d1f9d22b3ded50f48d227f14f85f39e39e5b5aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import mutations from '~/jira_connect/store/mutations';
import state from '~/jira_connect/store/state';

describe('JiraConnect store mutations', () => {
  let localState;

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

  describe('SET_ERROR_MESSAGE', () => {
    it('sets error message', () => {
      mutations.SET_ERROR_MESSAGE(localState, 'test error');

      expect(localState.errorMessage).toBe('test error');
    });
  });
});