summaryrefslogtreecommitdiff
path: root/web-ui/test/unit/login/about/welcome.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/unit/login/about/welcome.spec.js')
-rw-r--r--web-ui/test/unit/login/about/welcome.spec.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/web-ui/test/unit/login/about/welcome.spec.js b/web-ui/test/unit/login/about/welcome.spec.js
deleted file mode 100644
index 3e190c0c..00000000
--- a/web-ui/test/unit/login/about/welcome.spec.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import { shallow } from 'enzyme';
-import expect from 'expect';
-import React from 'react';
-import { Welcome } from 'src/login/about/welcome';
-
-describe('Welcome', () => {
- let welcome;
- const mockTranslations = key => key;
-
- beforeEach(() => {
- welcome = shallow(<Welcome t={mockTranslations} />);
- });
-
- it('renders welcome component', () => {
- expect(welcome.find('.welcome').length).toEqual(1);
- });
-});