Fix lint errors

This commit is contained in:
Eliot Berriot 2018-04-20 18:41:29 +02:00
parent a210cfcb9b
commit a4ce093919
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
4 changed files with 5 additions and 6 deletions

View File

@ -134,7 +134,7 @@ describe('store/auth', () => {
action: store.actions.login, action: store.actions.login,
payload: {credentials: credentials}, payload: {credentials: credentials},
expectedMutations: [ expectedMutations: [
{ type: 'token', payload: 'test' }, { type: 'token', payload: 'test' }
], ],
expectedActions: [ expectedActions: [
{ type: 'fetchProfile' } { type: 'fetchProfile' }
@ -183,7 +183,7 @@ describe('store/auth', () => {
], ],
expectedActions: [ expectedActions: [
{ type: 'favorites/fetch', payload: null, options: {root: true} }, { type: 'favorites/fetch', payload: null, options: {root: true} },
{ type: 'playlists/fetchOwn', payload: null, options: {root: true} }, { type: 'playlists/fetchOwn', payload: null, options: {root: true} }
] ]
}, done) }, done)
}) })

View File

@ -97,6 +97,5 @@ describe('store/radios', () => {
expectedActions: [] expectedActions: []
}, done) }, done)
}) })
}) })
}) })