]> source.dussan.org Git - sonarqube.git/blob
a76a31c61d26fc5e009d419ad441e42bd42036a6
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should display a ready notification 1`] = `
4 <div>
5   <div
6     className="alert alert-success"
7   >
8     <span>
9       marketplace.status.AUTOMATIC_READY
10     </span>
11     <button
12       className="js-restart spacer-left"
13       onClick={[Function]}
14     >
15       marketplace.restart
16     </button>
17   </div>
18 </div>
19 `;
20
21 exports[`should display an in progress notif 1`] = `
22 <div>
23   <div
24     className="alert alert-info"
25   >
26     <i
27       className="spinner spacer-right text-bottom"
28     />
29     <span>
30       marketplace.status.AUTOMATIC_IN_PROGRESS
31     </span>
32   </div>
33 </div>
34 `;
35
36 exports[`should display install errors 1`] = `
37 <div>
38   <div
39     className="alert alert-danger alert-cancel"
40   >
41     Foo error
42     <a
43       className="button-link text-danger"
44       href="#"
45       onClick={[Function]}
46     >
47       <CloseIcon />
48     </a>
49   </div>
50   <div
51     className="alert alert-info"
52   >
53     <i
54       className="spinner spacer-right text-bottom"
55     />
56     <span>
57       marketplace.status.AUTOMATIC_IN_PROGRESS
58     </span>
59   </div>
60 </div>
61 `;