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

mutations_spec.js « router « modules « stores « ide « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4a83c9344d2c351cd5a7e9045b356867c2ac3c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import mutations from '~/ide/stores/modules/router/mutations';
import * as types from '~/ide/stores/modules/router/mutation_types';
import createState from '~/ide/stores/modules/router/state';

const TEST_PATH = 'test/path/abc';

describe('ide/stores/modules/router/mutations', () => {
  let state;

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

  describe(types.PUSH, () => {
    it('updates state', () => {
      expect(state.fullPath).toBe('');

      mutations[types.PUSH](state, TEST_PATH);

      expect(state.fullPath).toBe(TEST_PATH);
    });
  });
});