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/boards/components/sidebar/board_sidebar_time_tracker_spec.js')
-rw-r--r--spec/frontend/boards/components/sidebar/board_sidebar_time_tracker_spec.js67
1 files changed, 0 insertions, 67 deletions
diff --git a/spec/frontend/boards/components/sidebar/board_sidebar_time_tracker_spec.js b/spec/frontend/boards/components/sidebar/board_sidebar_time_tracker_spec.js
deleted file mode 100644
index b01ee01120e..00000000000
--- a/spec/frontend/boards/components/sidebar/board_sidebar_time_tracker_spec.js
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- To avoid duplicating tests in time_tracker.spec,
- this spec only contains a simple test to check rendering.
-
- A detailed feature spec is used to test time tracking feature
- in swimlanes sidebar.
-*/
-
-import { shallowMount } from '@vue/test-utils';
-import BoardSidebarTimeTracker from '~/boards/components/sidebar/board_sidebar_time_tracker.vue';
-import { createStore } from '~/boards/stores';
-import IssuableTimeTracker from '~/sidebar/components/time_tracking/time_tracker.vue';
-
-describe('BoardSidebarTimeTracker', () => {
- let wrapper;
- let store;
-
- const createComponent = (options) => {
- wrapper = shallowMount(BoardSidebarTimeTracker, {
- store,
- ...options,
- });
- };
-
- beforeEach(() => {
- store = createStore();
- store.state.boardItems = {
- 1: {
- id: 1,
- iid: 1,
- timeEstimate: 3600,
- totalTimeSpent: 1800,
- humanTimeEstimate: '1h',
- humanTotalTimeSpent: '30min',
- },
- };
- store.state.activeId = '1';
- });
-
- it.each`
- timeTrackingLimitToHours | canUpdate
- ${true} | ${false}
- ${true} | ${true}
- ${false} | ${false}
- ${false} | ${true}
- `(
- 'renders IssuableTimeTracker with correct spent and estimated time (timeTrackingLimitToHours=$timeTrackingLimitToHours, canUpdate=$canUpdate)',
- ({ timeTrackingLimitToHours, canUpdate }) => {
- createComponent({ provide: { timeTrackingLimitToHours, canUpdate } });
-
- expect(wrapper.findComponent(IssuableTimeTracker).props()).toEqual({
- limitToHours: timeTrackingLimitToHours,
- canAddTimeEntries: canUpdate,
- showCollapsed: false,
- issuableId: '1',
- issuableIid: '1',
- fullPath: '',
- initialTimeTracking: {
- timeEstimate: 3600,
- totalTimeSpent: 1800,
- humanTimeEstimate: '1h',
- humanTotalTimeSpent: '30min',
- },
- });
- },
- );
-});