]> source.dussan.org Git - sonarqube.git/blob
679067cb000c8a2e8022ff7caaa716a5627c643a
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`renders background task error correctly 1`] = `
4 <NavBarNotif
5   className="alert alert-danger"
6 >
7   <span>
8     component_navigation.status.failed
9   </span>
10 </NavBarNotif>
11 `;
12
13 exports[`renders background task in progress info correctly 1`] = `
14 <NavBarNotif
15   className="alert alert-info"
16 >
17   <i
18     className="spinner spacer-right text-bottom"
19   />
20   <span>
21     component_navigation.status.in_progress
22   </span>
23 </NavBarNotif>
24 `;
25
26 exports[`renders background task license info correctly 1`] = `
27 <NavBarNotif
28   className="alert alert-danger"
29 >
30   <span>
31     Foo
32   </span>
33   <Link
34     className="little-spacer-left"
35     onlyActiveOnIndex={false}
36     style={Object {}}
37     to="/admin/extension/license/app"
38   >
39     license.component_navigation.button.LICENSING
40     .
41   </Link>
42 </NavBarNotif>
43 `;
44
45 exports[`renders background task pending info correctly 1`] = `
46 <NavBarNotif
47   className="alert alert-info"
48 >
49   <PendingIcon
50     className="spacer-right"
51   />
52   <span>
53     component_navigation.status.pending
54   </span>
55 </NavBarNotif>
56 `;