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: 3b49536799cfeee007fda468641a0a8998c1f1d6 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Suggestion Diff component matches snapshot 1`] = `
<div
  class="md-suggestion"
>
  <suggestion-diff-header-stub
    batchsuggestionscount="1"
    class="js-suggestion-diff-header"
    defaultcommitmessage="Apply suggestion"
    helppagepath="path_to_docs"
    isapplyingbatch="true"
    isbatched="true"
    suggestionscount="0"
  />
   
  <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>
`;