Feature/adc/#55 settings screen (#77)
* #55 - created settings views with sub navigation + preference page * #55 - navigation done * #55 - views and translations done * #55 - merge main * #55 - user settings interface update * #55 - mobile view fix Co-authored-by: Arthi-chaud <arthur.jamet@gmail.com>
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
import TestRenderer from 'react-test-renderer';
|
||||
import store from '../state/Store';
|
||||
|
||||
import AuthenticationView from '../views/AuthenticationView';
|
||||
|
||||
describe('<AuthenticationView />', () => {
|
||||
it('has 3 children', () => {
|
||||
const tree = TestRenderer.create(<Provider store={store}><AuthenticationView /></Provider>).toJSON();
|
||||
expect(tree.children.length).toBe(3);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user