summaryrefslogtreecommitdiff
path: root/spec/javascripts/issuable_suggestions/mock_data.js
blob: 4f0f9ef8d62a1536c569e7965c25496583288017 (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
function getDate(daysMinus) {
  const today = new Date();
  today.setDate(today.getDate() - daysMinus);

  return today.toISOString();
}

export default () => ({
  id: 1,
  iid: 1,
  state: 'opened',
  upvotes: 1,
  userNotesCount: 2,
  closedAt: getDate(1),
  createdAt: getDate(3),
  updatedAt: getDate(2),
  confidential: false,
  webUrl: `${gl.TEST_HOST}/test/issue/1`,
  title: 'Test issue',
  author: {
    avatarUrl: `${gl.TEST_HOST}/avatar`,
    name: 'Author Name',
    username: 'author.username',
    webUrl: `${gl.TEST_HOST}/author`,
  },
});