]> source.dussan.org Git - sonarqube.git/blob
1eb0a5d137bcb8487a2936c38337f54c85780ce3
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`renders background task error correctly 1`] = `
4 <NavBarNotif
5   variant="error"
6 >
7   <FormattedMessage
8     defaultMessage="component_navigation.status.failed"
9     id="component_navigation.status.failed"
10     values={
11       Object {
12         "branch": undefined,
13         "url": undefined,
14       }
15     }
16   />
17 </NavBarNotif>
18 `;
19
20 exports[`renders background task error correctly for a different branch/PR 1`] = `
21 <NavBarNotif
22   variant="error"
23 >
24   <FormattedMessage
25     defaultMessage="component_navigation.status.failed_branch"
26     id="component_navigation.status.failed_branch"
27     values={
28       Object {
29         "branch": "my/branch",
30         "url": undefined,
31       }
32     }
33   />
34 </NavBarNotif>
35 `;
36
37 exports[`renders background task error correctly for a different branch/PR 2`] = `
38 <NavBarNotif
39   variant="error"
40 >
41   <FormattedMessage
42     defaultMessage="component_navigation.status.failed_branch"
43     id="component_navigation.status.failed_branch"
44     values={
45       Object {
46         "branch": "650 - feature/my_pr",
47         "url": undefined,
48       }
49     }
50   />
51 </NavBarNotif>
52 `;
53
54 exports[`renders background task in progress info correctly 1`] = `
55 <NavBarNotif
56   variant="info"
57 >
58   <i
59     className="spinner spacer-right text-bottom"
60   />
61   <FormattedMessage
62     defaultMessage="component_navigation.status.in_progress"
63     id="component_navigation.status.in_progress"
64     values={
65       Object {
66         "branch": undefined,
67         "url": undefined,
68       }
69     }
70   />
71 </NavBarNotif>
72 `;
73
74 exports[`renders background task license info correctly 1`] = `
75 <Connect(withAppState(ComponentNavLicenseNotif))
76   currentTask={
77     Object {
78       "errorMessage": "Foo",
79       "errorType": "LICENSING",
80       "status": "FAILED",
81     }
82   }
83 />
84 `;
85
86 exports[`renders background task pending info correctly 1`] = `
87 <NavBarNotif
88   variant="info"
89 >
90   <PendingIcon
91     className="spacer-right"
92   />
93   <FormattedMessage
94     defaultMessage="component_navigation.status.pending"
95     id="component_navigation.status.pending"
96     values={
97       Object {
98         "branch": undefined,
99         "url": undefined,
100       }
101     }
102   />
103 </NavBarNotif>
104 `;
105
106 exports[`renders background task pending info correctly for admin 1`] = `
107 <NavBarNotif
108   variant="info"
109 >
110   <PendingIcon
111     className="spacer-right"
112   />
113   <FormattedMessage
114     defaultMessage="component_navigation.status.pending.admin"
115     id="component_navigation.status.pending.admin"
116     values={
117       Object {
118         "branch": undefined,
119         "url": <Link
120           onlyActiveOnIndex={false}
121           style={Object {}}
122           to={
123             Object {
124               "pathname": "/project/background_tasks",
125               "query": Object {
126                 "id": "foo",
127                 "status": "__ALL__",
128               },
129             }
130           }
131         >
132           background_tasks.page
133         </Link>,
134       }
135     }
136   />
137 </NavBarNotif>
138 `;