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

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

exports[`Code Block with default props renders correctly 1`] = `
<pre
  class="code-block rounded"
>
  <code
    class="d-block"
  >
    test-code
  </code>
</pre>
`;

exports[`Code Block with maxHeight set to "200px" renders correctly 1`] = `
<pre
  class="code-block rounded"
  style="max-height: 200px; overflow-y: auto;"
>
  <code
    class="d-block"
  >
    test-code
  </code>
</pre>
`;