Fix auth test

This commit is contained in:
Alex Gleason 2023-06-20 21:36:25 -05:00
parent 256d7825ee
commit ced600657b
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -10,6 +10,7 @@ import {
} from 'soapbox/actions/auth';
import { ME_FETCH_SKIP } from 'soapbox/actions/me';
import { MASTODON_PRELOAD_IMPORT } from 'soapbox/actions/preload';
import { buildAccount } from 'soapbox/jest/factory';
import { AuthAppRecord, AuthTokenRecord, AuthUserRecord, ReducerRecord } from 'soapbox/reducers/auth';
import reducer from '../auth';
@ -71,7 +72,7 @@ describe('auth reducer', () => {
it('deletes the user', () => {
const action = {
type: AUTH_LOGGED_OUT,
account: fromJS({ url: 'https://gleasonator.com/users/alex' }),
account: buildAccount({ url: 'https://gleasonator.com/users/alex' }),
};
const state = ReducerRecord({
@ -100,7 +101,7 @@ describe('auth reducer', () => {
const action = {
type: AUTH_LOGGED_OUT,
account: fromJS({ url: 'https://gleasonator.com/users/alex' }),
account: buildAccount({ url: 'https://gleasonator.com/users/alex' }),
};
const result = reducer(state, action);