]> source.dussan.org Git - sonarqube.git/blob
2e49983f7d39570014f0b5f5df0f0de8298dd89a
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should correctly display status message after checking license 1`] = `
4 <p
5   className="alert spacer-top alert-success"
6 >
7   marketplace.license_preview_status.NO_INSTALL.Foo
8 </p>
9 `;
10
11 exports[`should correctly display status message after checking license 2`] = `
12 <p
13   className="alert spacer-top alert-warning"
14 >
15   marketplace.license_preview_status.AUTOMATIC_INSTALL.Foo
16 </p>
17 `;
18
19 exports[`should correctly display status message after checking license 3`] = `
20 <p
21   className="alert spacer-top alert-danger"
22 >
23   marketplace.license_preview_status.MANUAL_INSTALL.Foo
24 </p>
25 `;
26
27 exports[`should display correctly 1`] = `
28 <div>
29   <label
30     className="display-inline-block spacer-bottom"
31     htmlFor="set-license"
32   >
33     marketplace.enter_license_for_x.Foo
34     <em
35       className="mandatory"
36     >
37       *
38     </em>
39   </label>
40   <textarea
41     autoFocus={true}
42     className="display-block"
43     cols={62}
44     id="set-license"
45     onChange={[Function]}
46     required={true}
47     rows={6}
48     value=""
49   />
50   <a
51     className="display-inline-block spacer-top"
52     href="license_url"
53     target="_blank"
54   >
55     marketplace.i_need_a_license
56   </a>
57 </div>
58 `;