summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap')
-rw-r--r--webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap27
1 files changed, 27 insertions, 0 deletions
diff --git a/webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap b/webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap
new file mode 100644
index 000000000..e05132ddd
--- /dev/null
+++ b/webapp/tests/components/__snapshots__/spinner_button.test.jsx.snap
@@ -0,0 +1,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 {}}
+/>
+`;