File size: 874 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import { EMAIL_ACCOUNTS_REQUEST_SUCCESS } from 'calypso/state/action-types';
import { emailAccountsReducer } from '../reducer';
describe( "emailAccountsReducer's", () => {
const account = {
domain_name: 'test.blog',
product_name: 'G Suite Basic',
product_slug: 'gapps',
product_type: 'gapps',
site_id: 1,
mailboxes: [
{
name: 'user',
first_name: 'User',
last_name: 'One',
state: 'suspended',
},
],
};
describe( 'accounts sub-reducer', () => {
test( 'should default to null', () => {
const state = emailAccountsReducer( undefined, {} );
expect( state ).toBeNull();
} );
test( 'should return new items received', () => {
const state = emailAccountsReducer( null, {
type: EMAIL_ACCOUNTS_REQUEST_SUCCESS,
response: { accounts: [ account ] },
} );
expect( state ).toEqual( [ account ] );
} );
} );
} );
|