summaryrefslogtreecommitdiff
path: root/spec/javascripts/boards/board_list_common_spec.js
blob: cb337e4cc83d9d50a7ce0c0ed5479a80147dd056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* global List */
/* global ListIssue */

import MockAdapter from 'axios-mock-adapter';
import Vue from 'vue';
import axios from '~/lib/utils/axios_utils';
import Sortable from 'sortablejs';
import BoardList from '~/boards/components/board_list.vue';

import '~/boards/models/issue';
import '~/boards/models/list';
import { listObj, boardsMockInterceptor, mockBoardService } from './mock_data';
import boardsStore from '~/boards/stores/boards_store';

window.Sortable = Sortable;

export default function createComponent({ done, listIssueProps = {}, componentProps = {} }) {
  const el = document.createElement('div');

  document.body.appendChild(el);
  const mock = new MockAdapter(axios);
  mock.onAny().reply(boardsMockInterceptor);
  gl.boardService = mockBoardService();
  boardsStore.create();

  const BoardListComp = Vue.extend(BoardList);
  const list = new List(listObj);
  const issue = new ListIssue({
    title: 'Testing',
    id: 1,
    iid: 1,
    confidential: false,
    labels: [],
    assignees: [],
    ...listIssueProps,
  });
  list.issuesSize = 1;
  list.issues.push(issue);

  const component = new BoardListComp({
    el,
    propsData: {
      disabled: false,
      list,
      issues: list.issues,
      loading: false,
      issueLinkBase: '/issues',
      rootPath: '/',
      ...componentProps,
    },
  }).$mount();

  Vue.nextTick(() => {
    done();
  });

  return { component, mock };
}