Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « components « blob « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f7b297aba0ce779897958c16626f8a552d37bc5 (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
export const Blob = {
  binary: false,
  highlightedData:
    '<h1 data-sourcepos="1:1-1:19" dir="auto">\n<a id="user-content-this-one-is-dummy" class="anchor" href="#this-one-is-dummy" aria-hidden="true"></a>This one is dummy</h1>\n<h2 data-sourcepos="3:1-3:21" dir="auto">\n<a id="user-content-and-has-sub-header" class="anchor" href="#and-has-sub-header" aria-hidden="true"></a>And has sub-header</h2>\n<p data-sourcepos="5:1-5:27" dir="auto">Even some  stupid text here</p>',
  name: 'dummy.md',
  path: 'dummy.md',
  rawPath: '/flightjs/flight/snippets/51/raw',
  size: 75,
  simpleViewer: {
    collapsed: false,
    fileType: 'text',
    loadAsync: true,
    loadingPartialName: 'loading',
    renderError: null,
    tooLarge: false,
    type: 'simple',
  },
  richViewer: {
    collapsed: false,
    fileType: 'markup',
    loadAsync: true,
    loadingPartialName: 'loading',
    renderError: null,
    tooLarge: false,
    type: 'rich',
  },
};

export default {};