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:
Diffstat (limited to 'spec/frontend/jobs/components/table/cells/duration_cell_spec.js')
-rw-r--r--spec/frontend/jobs/components/table/cells/duration_cell_spec.js77
1 files changed, 0 insertions, 77 deletions
diff --git a/spec/frontend/jobs/components/table/cells/duration_cell_spec.js b/spec/frontend/jobs/components/table/cells/duration_cell_spec.js
deleted file mode 100644
index d015edb0e91..00000000000
--- a/spec/frontend/jobs/components/table/cells/duration_cell_spec.js
+++ /dev/null
@@ -1,77 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import { extendedWrapper } from 'helpers/vue_test_utils_helper';
-import DurationCell from '~/jobs/components/table/cells/duration_cell.vue';
-
-describe('Duration Cell', () => {
- let wrapper;
-
- const findJobDuration = () => wrapper.findByTestId('job-duration');
- const findJobFinishedTime = () => wrapper.findByTestId('job-finished-time');
- const findDurationIcon = () => wrapper.findByTestId('duration-icon');
- const findFinishedTimeIcon = () => wrapper.findByTestId('finished-time-icon');
-
- const createComponent = (props) => {
- wrapper = extendedWrapper(
- shallowMount(DurationCell, {
- propsData: {
- job: {
- ...props,
- },
- },
- }),
- );
- };
-
- it('does not display duration or finished time when no properties are present', () => {
- createComponent();
-
- expect(findJobDuration().exists()).toBe(false);
- expect(findJobFinishedTime().exists()).toBe(false);
- });
-
- it('displays duration and finished time when both properties are present', () => {
- const props = {
- duration: 7,
- finishedAt: '2021-04-26T13:37:52Z',
- };
-
- createComponent(props);
-
- expect(findJobDuration().exists()).toBe(true);
- expect(findJobFinishedTime().exists()).toBe(true);
- });
-
- it('displays only the duration of the job when the duration property is present', () => {
- const props = {
- duration: 7,
- };
-
- createComponent(props);
-
- expect(findJobDuration().exists()).toBe(true);
- expect(findJobFinishedTime().exists()).toBe(false);
- });
-
- it('displays only the finished time of the job when the finshedAt property is present', () => {
- const props = {
- finishedAt: '2021-04-26T13:37:52Z',
- };
-
- createComponent(props);
-
- expect(findJobFinishedTime().exists()).toBe(true);
- expect(findJobDuration().exists()).toBe(false);
- });
-
- it('displays icons for finished time and duration', () => {
- const props = {
- duration: 7,
- finishedAt: '2021-04-26T13:37:52Z',
- };
-
- createComponent(props);
-
- expect(findFinishedTimeIcon().props('name')).toBe('calendar');
- expect(findDurationIcon().props('name')).toBe('timer');
- });
-});