Snackbar: fix auth test

This commit is contained in:
Alex Gleason 2020-09-29 19:31:41 -05:00
parent 14a5d478f3
commit 0b8b0b82f7
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -10,7 +10,7 @@ describe('logOut()', () => {
it('creates expected actions', () => { it('creates expected actions', () => {
const expectedActions = [ const expectedActions = [
{ type: AUTH_LOGGED_OUT }, { type: AUTH_LOGGED_OUT },
{ type: ALERT_SHOW, title: 'Successfully logged out.', message: '' }, { type: ALERT_SHOW, message: 'Logged out.', severity: 'success' },
]; ];
const store = mockStore(ImmutableMap()); const store = mockStore(ImmutableMap());