summaryrefslogtreecommitdiff
path: root/web-ui/test/unit/login/app.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/unit/login/app.spec.js')
-rw-r--r--web-ui/test/unit/login/app.spec.js20
1 files changed, 13 insertions, 7 deletions
diff --git a/web-ui/test/unit/login/app.spec.js b/web-ui/test/unit/login/app.spec.js
index 347e2b19..c1d63235 100644
--- a/web-ui/test/unit/login/app.spec.js
+++ b/web-ui/test/unit/login/app.spec.js
@@ -2,25 +2,31 @@ import { shallow } from 'enzyme';
import expect from 'expect';
import React from 'react';
import { App } from 'src/login/app';
+import AuthError from 'src/login/error/auth_error';
+import GenericError from 'src/login/error/generic_error';
describe('App', () => {
let app;
const mockTranslations = key => key;
- beforeEach(() => {
- app = shallow(<App t={mockTranslations} />);
- });
-
it('renders login form', () => {
+ app = shallow(<App t={mockTranslations} />);
expect(app.find('form').props().action).toEqual('/login');
});
it('renders auth error message', () => {
app = shallow(<App t={mockTranslations} authError />);
- expect(app.find('.error').length).toEqual(1);
+ expect(app.find(AuthError).length).toEqual(1);
});
- it('does not render auth error message', () => {
- expect(app.find('.error').length).toEqual(0);
+ it('renders generic error message', () => {
+ app = shallow(<App t={mockTranslations} error />);
+ expect(app.find(GenericError).length).toEqual(1);
+ });
+
+ it('does not render error message', () => {
+ app = shallow(<App t={mockTranslations} />);
+ expect(app.find(AuthError).length).toEqual(0);
+ expect(app.find(GenericError).length).toEqual(0);
});
});