Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-29 00:07:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-29 00:07:58 +0300
commitfcfe959a5ddee652a27e6b1179a116fdbb70986b (patch)
tree4dbcf2a93aaaf4952507207168c582f5948efaa3 /spec/frontend/pipeline_schedules/components
parent7f3f19582b13b4162212bcf0ae72eef63685ffbc (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/pipeline_schedules/components')
-rw-r--r--spec/frontend/pipeline_schedules/components/pipeline_schedules_form_spec.js25
-rw-r--r--spec/frontend/pipeline_schedules/components/pipeline_schedules_spec.js25
-rw-r--r--spec/frontend/pipeline_schedules/components/table/pipeline_schedules_table_spec.js25
3 files changed, 0 insertions, 75 deletions
diff --git a/spec/frontend/pipeline_schedules/components/pipeline_schedules_form_spec.js b/spec/frontend/pipeline_schedules/components/pipeline_schedules_form_spec.js
deleted file mode 100644
index 4b5a9611251..00000000000
--- a/spec/frontend/pipeline_schedules/components/pipeline_schedules_form_spec.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import { GlForm } from '@gitlab/ui';
-import PipelineSchedulesForm from '~/pipeline_schedules/components/pipeline_schedules_form.vue';
-
-describe('Pipeline schedules form', () => {
- let wrapper;
-
- const createComponent = () => {
- wrapper = shallowMount(PipelineSchedulesForm);
- };
-
- const findForm = () => wrapper.findComponent(GlForm);
-
- beforeEach(() => {
- createComponent();
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('displays form', () => {
- expect(findForm().exists()).toBe(true);
- });
-});
diff --git a/spec/frontend/pipeline_schedules/components/pipeline_schedules_spec.js b/spec/frontend/pipeline_schedules/components/pipeline_schedules_spec.js
deleted file mode 100644
index 98e53942d19..00000000000
--- a/spec/frontend/pipeline_schedules/components/pipeline_schedules_spec.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import PipelineSchedules from '~/pipeline_schedules/components/pipeline_schedules.vue';
-import PipelineSchedulesTable from '~/pipeline_schedules/components/table/pipeline_schedules_table.vue';
-
-describe('Pipeline schedules app', () => {
- let wrapper;
-
- const createComponent = () => {
- wrapper = shallowMount(PipelineSchedules);
- };
-
- const findTable = () => wrapper.findComponent(PipelineSchedulesTable);
-
- beforeEach(() => {
- createComponent();
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('displays table', () => {
- expect(findTable().exists()).toBe(true);
- });
-});
diff --git a/spec/frontend/pipeline_schedules/components/table/pipeline_schedules_table_spec.js b/spec/frontend/pipeline_schedules/components/table/pipeline_schedules_table_spec.js
deleted file mode 100644
index 950b5d64ffe..00000000000
--- a/spec/frontend/pipeline_schedules/components/table/pipeline_schedules_table_spec.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import { GlTableLite } from '@gitlab/ui';
-import PipelineSchedulesTable from '~/pipeline_schedules/components/table/pipeline_schedules_table.vue';
-
-describe('Pipeline schedules table', () => {
- let wrapper;
-
- const createComponent = () => {
- wrapper = shallowMount(PipelineSchedulesTable);
- };
-
- const findTable = () => wrapper.findComponent(GlTableLite);
-
- beforeEach(() => {
- createComponent();
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('displays table', () => {
- expect(findTable().exists()).toBe(true);
- });
-});