rename vuex dir to store

This commit is contained in:
Dennis Tang 2018-05-11 14:45:27 +02:00
parent 29ed911d83
commit 08cb13a5de
12 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@ import DropdownSearchInput from '~/vue_shared/components/dropdown/dropdown_searc
import DropdownHiddenInput from '~/vue_shared/components/dropdown/dropdown_hidden_input.vue';
import DropdownButton from '~/vue_shared/components/dropdown/dropdown_button.vue';
import store from '../stores';
import store from '../store';
export default {
store,

View File

@ -4,7 +4,7 @@ import {
SET_PROJECT,
SET_ZONE,
SET_MACHINE_TYPES,
} from '~/projects/gke_cluster_dropdowns/stores/mutation_types';
} from '~/projects/gke_cluster_dropdowns/store/mutation_types';
import mountComponent from 'spec/helpers/vue_mount_component_helper';
import { resetStore } from '../helpers';

View File

@ -1,6 +1,6 @@
import Vue from 'vue';
import GkeProjectIdDropdown from '~/projects/gke_cluster_dropdowns/components/gke_project_id_dropdown.vue';
import { SET_PROJECTS } from '~/projects/gke_cluster_dropdowns/stores/mutation_types';
import { SET_PROJECTS } from '~/projects/gke_cluster_dropdowns/store/mutation_types';
import mountComponent from 'spec/helpers/vue_mount_component_helper';
import { resetStore } from '../helpers';

View File

@ -1,6 +1,6 @@
import Vue from 'vue';
import GkeZoneDropdown from '~/projects/gke_cluster_dropdowns/components/gke_zone_dropdown.vue';
import { SET_PROJECT, SET_ZONES } from '~/projects/gke_cluster_dropdowns/stores/mutation_types';
import { SET_PROJECT, SET_ZONES } from '~/projects/gke_cluster_dropdowns/store/mutation_types';
import mountComponent from 'spec/helpers/vue_mount_component_helper';
import { resetStore } from '../helpers';

View File

@ -1,6 +1,6 @@
import testAction from 'spec/helpers/vuex_action_helper';
import * as actions from '~/projects/gke_cluster_dropdowns/stores/actions';
import store from '~/projects/gke_cluster_dropdowns/stores';
import * as actions from '~/projects/gke_cluster_dropdowns/store/actions';
import store from '~/projects/gke_cluster_dropdowns/store';
import { resetStore, gapi } from '../helpers';
import { selectedProjectMock, selectedZoneMock, selectedMachineTypeMock } from '../mock_data';

View File

@ -1,4 +1,4 @@
import * as getters from '~/projects/gke_cluster_dropdowns/stores/getters';
import * as getters from '~/projects/gke_cluster_dropdowns/store/getters';
import { selectedProjectMock, selectedZoneMock, selectedMachineTypeMock } from '../mock_data';
describe('GCP Cluster Dropdown Store Getters', () => {

View File

@ -1,4 +1,4 @@
import mutations from '~/projects/gke_cluster_dropdowns/stores/mutations';
import mutations from '~/projects/gke_cluster_dropdowns/store/mutations';
import {
selectedProjectMock,
selectedZoneMock,