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

code_instruction_spec.js.snap « __snapshots__ « components « details « packages « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 172b8919673a48e3fa14b2dc0d340908e66aa538 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Package code instruction multiline to match the snapshot 1`] = `
<div>
  <pre
    class="js-instruction-pre"
  >
    this is some
multiline text
  </pre>
</div>
`;

exports[`Package code instruction single line to match the default snapshot 1`] = `
<div
  class="input-group gl-mb-3"
>
  <input
    class="form-control monospace js-instruction-input"
    readonly="readonly"
    type="text"
  />
   
  <span
    class="input-group-append js-instruction-button"
  >
    <button
      class="btn input-group-text btn-secondary btn-md btn-default"
      data-clipboard-text="npm i @my-package"
      title="Copy npm install command"
      type="button"
    >
      <!---->
       
      <svg
        class="gl-icon s16"
        data-testid="copy-to-clipboard-icon"
      >
        <use
          href="#copy-to-clipboard"
        />
      </svg>
    </button>
  </span>
</div>
`;