Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { CURRENT_USER_RECEIVE } from 'calypso/state/action-types';
import { setCurrentUser } from '../actions';
describe( 'actions', () => {
describe( '#setCurrentUser()', () => {
test( 'should return an action object', () => {
const action = setCurrentUser( { ID: 73705554 } );
expect( action ).toEqual( {
type: CURRENT_USER_RECEIVE,
user: { ID: 73705554 },
} );
} );
} );
} );