diff --git a/__tests__/shared/__snapshots__/index.jsx.snap b/__tests__/shared/__snapshots__/index.jsx.snap
deleted file mode 100644
index 2069cbf96f..0000000000
--- a/__tests__/shared/__snapshots__/index.jsx.snap
+++ /dev/null
@@ -1,87 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`Snapshot match 1`] = `
-
-
-
-
-
-
-
-
-
-
-
-
-
-`;
-
-exports[`Snapshot match 2`] = `
-
-
-
-
-
-
-
-
-
-
-
-
-
-`;
diff --git a/__tests__/shared/index.jsx b/__tests__/shared/index.jsx
deleted file mode 100644
index 8884c42ce0..0000000000
--- a/__tests__/shared/index.jsx
+++ /dev/null
@@ -1,22 +0,0 @@
-
-import React from 'react';
-import Rnd from 'react-test-renderer/shallow';
-
-const rnd = new Rnd();
-
-test('Snapshot match', () => {
- process.env.DEV_TOOLS = '';
- let App = require('shared').default;
- rnd.render((
-
- ));
- expect(rnd.getRenderOutput()).toMatchSnapshot();
-
- process.env.DEV_TOOLS = true;
- jest.resetModules();
- App = require('shared').default;
- rnd.render((
-
- ));
- expect(rnd.getRenderOutput()).toMatchSnapshot();
-});