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/issuable_show/mock_data.js')
-rw-r--r--spec/frontend/issuable_show/mock_data.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/spec/frontend/issuable_show/mock_data.js b/spec/frontend/issuable_show/mock_data.js
deleted file mode 100644
index 986d32b4982..00000000000
--- a/spec/frontend/issuable_show/mock_data.js
+++ /dev/null
@@ -1,45 +0,0 @@
-import { mockIssuable as issuable } from '../issuable_list/mock_data';
-
-export const mockIssuable = {
- ...issuable,
- id: 'gid://gitlab/Issue/30',
- title: 'Sample title',
- titleHtml: 'Sample title',
- description: '# Summary',
- descriptionHtml:
- '<h1 data-sourcepos="1:1-1:25" dir="auto">&#x000A;<a id="user-content-magnoque-it-lurida-deus" class="anchor" href="#magnoque-it-lurida-deus" aria-hidden="true"></a>Summary</h1>',
- state: 'opened',
- blocked: false,
- confidential: false,
- updatedBy: issuable.author,
- type: 'ISSUE',
- currentUserTodos: {
- nodes: [
- {
- id: 'gid://gitlab/Todo/489',
- state: 'done',
- },
- ],
- },
-};
-
-export const mockIssuableShowProps = {
- issuable: mockIssuable,
- descriptionHelpPath: '/help/user/markdown',
- descriptionPreviewPath: '/gitlab-org/gitlab-shell/preview_markdown',
- taskListUpdatePath: `${mockIssuable.webUrl}.json`,
- taskListLockVersion: 1,
- editFormVisible: false,
- enableAutocomplete: true,
- enableAutosave: true,
- enableZenMode: true,
- enableTaskList: true,
- enableEdit: true,
- showFieldTitle: false,
- statusBadgeClass: 'status-box-open',
- statusIcon: 'issue-open-m',
- taskCompletionStatus: {
- completedCount: 0,
- count: 5,
- },
-};