]> source.dussan.org Git - sonarqube.git/blob
b9407f80f4b4ec6bd8b3e7c1da709edc0a2c237b
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: default 1`] = `
4 <div
5   className="display-flex-center"
6 >
7   <PageShortcutsTooltip
8     className="big-spacer-right"
9     leftAndRightLabel="issues.to_navigate"
10     upAndDownLabel="coding_rules.to_select_rules"
11   />
12   <DeferredSpinner
13     loading={false}
14   >
15     <ReloadButton
16       onClick={[MockFunction]}
17     />
18   </DeferredSpinner>
19 </div>
20 `;
21
22 exports[`should render correctly: loading 1`] = `
23 <div
24   className="display-flex-center"
25 >
26   <PageShortcutsTooltip
27     className="big-spacer-right"
28     leftAndRightLabel="issues.to_navigate"
29     upAndDownLabel="coding_rules.to_select_rules"
30   />
31   <DeferredSpinner
32     loading={true}
33   >
34     <ReloadButton
35       onClick={[MockFunction]}
36     />
37   </DeferredSpinner>
38 </div>
39 `;
40
41 exports[`should render correctly: with paging 1`] = `
42 <div
43   className="display-flex-center"
44 >
45   <PageShortcutsTooltip
46     className="big-spacer-right"
47     leftAndRightLabel="issues.to_navigate"
48     upAndDownLabel="coding_rules.to_select_rules"
49   />
50   <DeferredSpinner
51     loading={false}
52   >
53     <ReloadButton
54       onClick={[MockFunction]}
55     />
56   </DeferredSpinner>
57   <PageCounter
58     className="spacer-left"
59     label="coding_rules._rules"
60     total={100}
61   />
62 </div>
63 `;