about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/components/__tests__/__snapshots__/avatar-test.js.snap
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/components/__tests__/__snapshots__/avatar-test.js.snap')
-rw-r--r--app/javascript/themes/glitch/components/__tests__/__snapshots__/avatar-test.js.snap35
1 files changed, 0 insertions, 35 deletions
diff --git a/app/javascript/themes/glitch/components/__tests__/__snapshots__/avatar-test.js.snap b/app/javascript/themes/glitch/components/__tests__/__snapshots__/avatar-test.js.snap
deleted file mode 100644
index 4005c860f..000000000
--- a/app/javascript/themes/glitch/components/__tests__/__snapshots__/avatar-test.js.snap
+++ /dev/null
@@ -1,35 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`<Avatar /> Autoplay renders a animated avatar 1`] = `
-<div
-  className="account__avatar"
-  data-avatar-of="@alice"
-  onMouseEnter={[Function]}
-  onMouseLeave={[Function]}
-  style={
-    Object {
-      "backgroundImage": "url(/animated/alice.gif)",
-      "backgroundSize": "100px 100px",
-      "height": "100px",
-      "width": "100px",
-    }
-  }
-/>
-`;
-
-exports[`<Avatar /> Still renders a still avatar 1`] = `
-<div
-  className="account__avatar"
-  data-avatar-of="@alice"
-  onMouseEnter={[Function]}
-  onMouseLeave={[Function]}
-  style={
-    Object {
-      "backgroundImage": "url(/static/alice.jpg)",
-      "backgroundSize": "100px 100px",
-      "height": "100px",
-      "width": "100px",
-    }
-  }
-/>
-`;