summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/stores/test_reports/mutations.js
blob: 349e6ec04690a17e3dcd3e3bf22323f71324a95e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as types from './mutation_types';

export default {
  [types.SET_ENDPOINT](state, endpoint) {
    Object.assign(state, { endpoint });
  },

  [types.SET_REPORTS](state, testReports) {
    Object.assign(state, { testReports });
  },

  [types.SET_SELECTED_SUITE](state, selectedSuite) {
    Object.assign(state, { selectedSuite });
  },

  [types.TOGGLE_LOADING](state) {
    Object.assign(state, { isLoading: !state.isLoading });
  },
};