21 lines
493 B
JavaScript
21 lines
493 B
JavaScript
import { getters } from '../../contacts';
|
|
|
|
describe('#getters', () => {
|
|
it('getCurrentUser', () => {
|
|
const user = {
|
|
email: 'thoma@sphadikam.com',
|
|
name: 'Adu Thoma',
|
|
avatar_url: '',
|
|
identifier_hash: 'malana_hash',
|
|
};
|
|
const state = {
|
|
currentUser: user,
|
|
};
|
|
expect(getters.getCurrentUser(state)).toEqual({
|
|
email: 'thoma@sphadikam.com',
|
|
name: 'Adu Thoma',
|
|
avatar_url: '',
|
|
identifier_hash: 'malana_hash',
|
|
});
|
|
});
|
|
});
|