fix linter
This commit is contained in:
parent
ff63b6f6c5
commit
8ad0b96600
1 changed files with 5 additions and 7 deletions
|
@ -1,9 +1,7 @@
|
||||||
import reducer from '../auth';
|
import reducer from '../auth';
|
||||||
import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
||||||
import * as actions from '../auth';
|
import * as actions from '../auth';
|
||||||
|
|
||||||
const auth =
|
|
||||||
|
|
||||||
describe('auth reducer', () => {
|
describe('auth reducer', () => {
|
||||||
it('should return the initial state', () => {
|
it('should return the initial state', () => {
|
||||||
expect(reducer(undefined, {})).toEqual(ImmutableMap({
|
expect(reducer(undefined, {})).toEqual(ImmutableMap({
|
||||||
|
@ -30,7 +28,7 @@ describe('auth reducer', () => {
|
||||||
refresh_token: 'aydRA4eragIhavCdAyg6QQnDJmiMbdc-oEBvHYcW_PQ',
|
refresh_token: 'aydRA4eragIhavCdAyg6QQnDJmiMbdc-oEBvHYcW_PQ',
|
||||||
website: null,
|
website: null,
|
||||||
id: '113',
|
id: '113',
|
||||||
access_token: 'pbXS8HkoWodrAt_QE1NENcwqigxgWr3P1RIQCKMN0Os'
|
access_token: 'pbXS8HkoWodrAt_QE1NENcwqigxgWr3P1RIQCKMN0Os',
|
||||||
},
|
},
|
||||||
user: {
|
user: {
|
||||||
access_token: 'UVBP2e17b4pTpb_h8fImIm3F5a66IBVb-JkyZHs4gLE',
|
access_token: 'UVBP2e17b4pTpb_h8fImIm3F5a66IBVb-JkyZHs4gLE',
|
||||||
|
@ -38,10 +36,10 @@ describe('auth reducer', () => {
|
||||||
me: 'https://social.teci.world/users/curtis',
|
me: 'https://social.teci.world/users/curtis',
|
||||||
refresh_token: 'c2DpbVxYZBJDogNn-VBNFES72yXPNUYQCv0CrXGOplY',
|
refresh_token: 'c2DpbVxYZBJDogNn-VBNFES72yXPNUYQCv0CrXGOplY',
|
||||||
scope: 'read write follow push admin',
|
scope: 'read write follow push admin',
|
||||||
token_type: 'Bearer'
|
token_type: 'Bearer',
|
||||||
|
},
|
||||||
|
tokens: [],
|
||||||
},
|
},
|
||||||
tokens: []
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
const action = {
|
const action = {
|
||||||
type: actions.AUTH_APP_CREATED,
|
type: actions.AUTH_APP_CREATED,
|
||||||
|
|
Loading…
Reference in a new issue