summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/stores/mutations/branch_spec.js
blob: 1601769144ae5b6db957e1b1a200b62c5e3c0127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import mutations from 'ee/ide/stores/mutations/branch';
import state from 'ee/ide/stores/state';

describe('Multi-file store branch mutations', () => {
  let localState;

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

  describe('SET_CURRENT_BRANCH', () => {
    it('sets currentBranch', () => {
      mutations.SET_CURRENT_BRANCH(localState, 'master');

      expect(localState.currentBranchId).toBe('master');
    });
  });
});