]> source.dussan.org Git - sonarqube.git/blob
807a7c6714a4fe1849e989727a9dbde4427238b4
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should display a ready notification 1`] = `
4 <div
5   className="alert alert-page alert-success"
6 >
7   <span>
8     marketplace.status.AUTOMATIC_READY
9   </span>
10   <button
11     className="js-restart spacer-left"
12     onClick={[Function]}
13   >
14     marketplace.restart
15   </button>
16 </div>
17 `;
18
19 exports[`should display an error notification 1`] = `
20 <div
21   className="alert alert-page alert-danger"
22 >
23   marketplace.status.AUTOMATIC_FAILURE
24   <a
25     className="little-spacer-left"
26     href="https://www.sonarsource.com"
27     target="_blank"
28   >
29     marketplace.how_to_install
30   </a>
31 </div>
32 `;
33
34 exports[`should display an in progress notif 1`] = `
35 <div
36   className="alert alert-page alert-info"
37 >
38   <i
39     className="spinner spacer-right text-bottom"
40   />
41   <span>
42     marketplace.status.AUTOMATIC_IN_PROGRESS
43   </span>
44 </div>
45 `;