aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/__tests__/Avatar.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/ui/__tests__/Avatar.test.js')
-rw-r--r--vnext/src/ui/__tests__/Avatar.test.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/vnext/src/ui/__tests__/Avatar.test.js b/vnext/src/ui/__tests__/Avatar.test.js
index f454f6c7..7aea804c 100644
--- a/vnext/src/ui/__tests__/Avatar.test.js
+++ b/vnext/src/ui/__tests__/Avatar.test.js
@@ -1,14 +1,14 @@
-import { MemoryRouter } from 'react-router-dom';
+import { MemoryRouter } from 'react-router-dom'
-import Avatar from '../Avatar';
-import renderer from 'react-test-renderer';
+import Avatar from '../Avatar'
+import renderer from 'react-test-renderer'
test('Avatar renders correctly', () => {
const component = renderer.create(
<MemoryRouter>
<Avatar user={{ uid: 1, uname: 'ugnich', avatar: 'https://juick.com/i/a/1-deadbeef.png' }} />
</MemoryRouter>
- );
- let tree = component.toJSON();
- expect(tree).toMatchSnapshot();
-});
+ )
+ let tree = component.toJSON()
+ expect(tree).toMatchSnapshot()
+})