summaryrefslogtreecommitdiff
path: root/spec/frontend/ci_variable_list/components/ci_project_variables_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci_variable_list/components/ci_project_variables_spec.js')
-rw-r--r--spec/frontend/ci_variable_list/components/ci_project_variables_spec.js46
1 files changed, 0 insertions, 46 deletions
diff --git a/spec/frontend/ci_variable_list/components/ci_project_variables_spec.js b/spec/frontend/ci_variable_list/components/ci_project_variables_spec.js
deleted file mode 100644
index 53c25e430f2..00000000000
--- a/spec/frontend/ci_variable_list/components/ci_project_variables_spec.js
+++ /dev/null
@@ -1,46 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import { convertToGraphQLId } from '~/graphql_shared/utils';
-
-import ciProjectVariables from '~/ci_variable_list/components/ci_project_variables.vue';
-import ciVariableShared from '~/ci_variable_list/components/ci_variable_shared.vue';
-
-import { GRAPHQL_PROJECT_TYPE } from '~/ci_variable_list/constants';
-
-const mockProvide = {
- projectFullPath: '/namespace/project',
- projectId: 1,
-};
-
-describe('Ci Project Variable wrapper', () => {
- let wrapper;
-
- const findCiShared = () => wrapper.findComponent(ciVariableShared);
-
- const createComponent = () => {
- wrapper = shallowMount(ciProjectVariables, {
- provide: mockProvide,
- });
- };
-
- beforeEach(() => {
- createComponent();
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('Passes down the correct props to ci_variable_shared', () => {
- expect(findCiShared().props()).toEqual({
- id: convertToGraphQLId(GRAPHQL_PROJECT_TYPE, mockProvide.projectId),
- areScopedVariablesAvailable: true,
- componentName: 'ProjectVariables',
- entity: 'project',
- fullPath: mockProvide.projectFullPath,
- hideEnvironmentScope: false,
- mutationData: wrapper.vm.$options.mutationData,
- queryData: wrapper.vm.$options.queryData,
- refetchAfterMutation: false,
- });
- });
-});