summaryrefslogtreecommitdiff
path: root/spec/frontend/ci_variable_list/components/ci_admin_variables_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci_variable_list/components/ci_admin_variables_spec.js')
-rw-r--r--spec/frontend/ci_variable_list/components/ci_admin_variables_spec.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/spec/frontend/ci_variable_list/components/ci_admin_variables_spec.js b/spec/frontend/ci_variable_list/components/ci_admin_variables_spec.js
deleted file mode 100644
index aa83638773d..00000000000
--- a/spec/frontend/ci_variable_list/components/ci_admin_variables_spec.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-
-import ciAdminVariables from '~/ci_variable_list/components/ci_admin_variables.vue';
-import ciVariableShared from '~/ci_variable_list/components/ci_variable_shared.vue';
-
-describe('Ci Project Variable wrapper', () => {
- let wrapper;
-
- const findCiShared = () => wrapper.findComponent(ciVariableShared);
-
- const createComponent = () => {
- wrapper = shallowMount(ciAdminVariables);
- };
-
- beforeEach(() => {
- createComponent();
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('Passes down the correct props to ci_variable_shared', () => {
- expect(findCiShared().props()).toEqual({
- areScopedVariablesAvailable: false,
- componentName: 'InstanceVariables',
- entity: '',
- hideEnvironmentScope: true,
- mutationData: wrapper.vm.$options.mutationData,
- queryData: wrapper.vm.$options.queryData,
- refetchAfterMutation: true,
- fullPath: null,
- id: null,
- });
- });
-});