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