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

suggestion_diff_spec.js.snap « __snapshots__ « markdown « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29ac754de4988125713eb08b5d178e725dade761 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Suggestion Diff component matches snapshot 1`] = `
<div
  class="md-suggestion"
>
  <suggestion-diff-header-stub
    class="qa-suggestion-diff-header js-suggestion-diff-header"
    helppagepath="path_to_docs"
  />
   
  <table
    class="mb-3 md-suggestion-diff js-syntax-highlight code"
  >
    <tbody>
      <suggestion-diff-row-stub
        line="[object Object]"
      />
      <suggestion-diff-row-stub
        line="[object Object]"
      />
      <suggestion-diff-row-stub
        line="[object Object]"
      />
    </tbody>
  </table>
</div>
`;