]> source.dussan.org Git - sonarqube.git/blob
68f3b08cce18102c75597b7badedfdaae626cf25
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: loaded 1`] = `
4 <div
5   className="layout-page-main"
6 >
7   <DeferredSpinner
8     loading={false}
9     timeout={200}
10   >
11     <Helmet
12       defer={false}
13       encodeSpecialCharacters={true}
14       title="qualitygate"
15     />
16     <DetailsHeader
17       onSetDefault={[Function]}
18       qualityGate={
19         Object {
20           "id": "1",
21           "name": "qualitygate",
22         }
23       }
24       refreshItem={[Function]}
25       refreshList={[MockFunction]}
26     />
27     <Memo(Connect(withCurrentUser(DetailsContent)))
28       isDefault={false}
29       metrics={Object {}}
30       onAddCondition={[Function]}
31       onRemoveCondition={[Function]}
32       onSaveCondition={[Function]}
33       qualityGate={
34         Object {
35           "id": "1",
36           "name": "qualitygate",
37         }
38       }
39     />
40   </DeferredSpinner>
41 </div>
42 `;
43
44 exports[`should render correctly: loading 1`] = `
45 <div
46   className="layout-page-main"
47 >
48   <DeferredSpinner
49     loading={true}
50     timeout={200}
51   />
52 </div>
53 `;