]> source.dussan.org Git - sonarqube.git/blob
94c8f9251da5e60e345c60601b571c11c0d9ac74
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`renders a different message if the license is valid 1`] = `
4 <NavBarNotif
5   variant="error"
6 >
7   <span
8     className="little-spacer-right"
9   >
10     component_navigation.status.last_blocked_due_to_bad_license
11   </span>
12 </NavBarNotif>
13 `;
14
15 exports[`renders background task license info correctly 1`] = `
16 <NavBarNotif
17   variant="error"
18 >
19   <span
20     className="little-spacer-right"
21   >
22     Foo
23   </span>
24   <Link
25     onlyActiveOnIndex={false}
26     style={Object {}}
27     to="/admin/extension/license/app"
28   >
29     license.component_navigation.button.LICENSING
30     .
31   </Link>
32 </NavBarNotif>
33 `;
34
35 exports[`renders background task license info correctly 2`] = `
36 <NavBarNotif
37   variant="error"
38 >
39   <span
40     className="little-spacer-right"
41   >
42     Foo
43   </span>
44   please_contact_administrator
45 </NavBarNotif>
46 `;
47
48 exports[`renders correctly for LICENSING_LOC error 1`] = `
49 <NavBarNotif
50   variant="error"
51 >
52   <span
53     className="little-spacer-right"
54   >
55     Foo
56   </span>
57   <Link
58     onlyActiveOnIndex={false}
59     style={Object {}}
60     to="/admin/extension/license/app"
61   >
62     license.component_navigation.button.LICENSING_LOC
63     .
64   </Link>
65 </NavBarNotif>
66 `;