summaryrefslogtreecommitdiff
path: root/spec/frontend/packages/details/components/__snapshots__/npm_installation_spec.js.snap
blob: 58a509e6847dd08b14cd8f06c24afef5b385febb (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`NpmInstallation renders all the messages 1`] = `
<div>
  <h3
    class="gl-font-lg"
  >
    Installation
  </h3>
   
  <h4
    class="gl-font-base"
  >
    npm command
  </h4>
   
  <code-instruction-stub
    copytext="Copy npm command"
    instruction="npm i @Test/package"
    trackingaction="copy_npm_install_command"
  />
   
  <h4
    class="gl-font-base"
  >
    yarn command
  </h4>
   
  <code-instruction-stub
    copytext="Copy yarn command"
    instruction="yarn add @Test/package"
    trackingaction="copy_yarn_install_command"
  />
   
  <h3
    class="gl-font-lg"
  >
    Registry setup
  </h3>
   
  <h4
    class="gl-font-base"
  >
    npm command
  </h4>
   
  <code-instruction-stub
    copytext="Copy npm setup command"
    instruction="echo @Test:registry=undefined >> .npmrc"
    trackingaction="copy_npm_setup_command"
  />
   
  <h4
    class="gl-font-base"
  >
    yarn command
  </h4>
   
  <code-instruction-stub
    copytext="Copy yarn setup command"
    instruction="echo \\\\\\"@Test:registry\\\\\\" \\\\\\"undefined\\\\\\" >> .yarnrc"
    trackingaction="copy_yarn_setup_command"
  />
   
  <gl-sprintf-stub
    message="You may also need to setup authentication using an auth token. %{linkStart}See the documentation%{linkEnd} to find out more."
  />
</div>
`;