summaryrefslogtreecommitdiff
path: root/spec/frontend/ci_variable_list/components/ci_project_variables_spec.js
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 19:00:14 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 19:00:14 +0000
commit05f0ebba3a2c8ddf39e436f412dc2ab5bf1353b2 (patch)
tree11d0f2a6ec31c7793c184106cedc2ded3d9a2cc5 /spec/frontend/ci_variable_list/components/ci_project_variables_spec.js
parentec73467c23693d0db63a797d10194da9e72a74af (diff)
downloadgitlab-ce-15.8.0-rc42.tar.gz
Add latest changes from gitlab-org/gitlab@15-8-stable-eev15.8.0-rc42
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,
- });
- });
-});