summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap
blob: e05132ddd8345584eca8ef2d7ab86033353b492b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`components/SpinnerButton should match snapshot with children 1`] = `
<button
  className="btn btn-primary"
>
  <span
    id="child1"
  />
  <span
    id="child2"
  />
</button>
`;

exports[`components/SpinnerButton should match snapshot with required props 1`] = `
<button
  className="btn btn-primary"
/>
`;

exports[`components/SpinnerButton should match snapshot with spinning 1`] = `
<img
  className="spinner-button__gif"
  src={Object {}}
/>
`;