Skip to content
Snippets Groups Projects
Commit 08cb13a5 authored by Dennis Tang's avatar Dennis Tang :art:
Browse files

rename vuex dir to store

parent 29ed911d
No related branches found
No related tags found
No related merge requests found
Showing
with 8 additions and 8 deletions
Loading
Loading
@@ -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,
Loading
Loading
Loading
Loading
@@ -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';
Loading
Loading
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';
Loading
Loading
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';
Loading
Loading
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';
 
Loading
Loading
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', () => {
Loading
Loading
import mutations from '~/projects/gke_cluster_dropdowns/stores/mutations';
import mutations from '~/projects/gke_cluster_dropdowns/store/mutations';
import {
selectedProjectMock,
selectedZoneMock,
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment