about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/components/__tests__/display_name-test.js
diff options
context:
space:
mode:
authorkibigo! <marrus-sh@users.noreply.github.com>2017-11-17 19:25:06 -0800
committerkibigo! <marrus-sh@users.noreply.github.com>2017-11-17 19:29:17 -0800
commitfc2c8b50ddbe5dead0c68cfb470e66c6adaee05b (patch)
treebd099e0480c7dab0d7f38909bc842443629f08a3 /app/javascript/themes/glitch/components/__tests__/display_name-test.js
parente19fc6a9f81e3756e0198006d2eafbc2f3acadb5 (diff)
Removed glitch tests
Diffstat (limited to 'app/javascript/themes/glitch/components/__tests__/display_name-test.js')
-rw-r--r--app/javascript/themes/glitch/components/__tests__/display_name-test.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/javascript/themes/glitch/components/__tests__/display_name-test.js b/app/javascript/themes/glitch/components/__tests__/display_name-test.js
deleted file mode 100644
index 0d040c4cd..000000000
--- a/app/javascript/themes/glitch/components/__tests__/display_name-test.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react';
-import renderer from 'react-test-renderer';
-import { fromJS }  from 'immutable';
-import DisplayName from '../display_name';
-
-describe('<DisplayName />', () => {
-  it('renders display name + account name', () => {
-    const account = fromJS({
-      username: 'bar',
-      acct: 'bar@baz',
-      display_name_html: '<p>Foo</p>',
-    });
-    const component = renderer.create(<DisplayName account={account} />);
-    const tree      = component.toJSON();
-
-    expect(tree).toMatchSnapshot();
-  });
-});