golden hour
/var/www/html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test
⬆️ Go Up
Upload
File/Folder
Size
Actions
reducers.js
2.58 KB
Del
OK
resolvers.js
1.5 KB
Del
OK
selectors.js
6.79 KB
Del
OK
Edit: resolvers.js
/** * Internal dependencies */ import { getCartData } from '../resolvers'; import { receiveCart, receiveError } from '../actions'; import { CART_API_ERROR } from '../constants'; jest.mock( '@wordpress/data-controls' ); describe( 'getCartData', () => { describe( 'yields with expected responses', () => { let fulfillment; const rewind = () => ( fulfillment = getCartData() ); test( 'when apiFetch returns a valid response, yields expected ' + 'action', () => { rewind(); fulfillment.next( 'https://example.org' ); const { value } = fulfillment.next( { coupons: [], items: [], fees: [], itemsCount: 0, itemsWeight: 0, needsShipping: true, totals: {}, } ); expect( value ).toEqual( receiveCart( { coupons: [], items: [], fees: [], itemsCount: 0, itemsWeight: 0, needsShipping: true, totals: {}, } ) ); const { done } = fulfillment.next(); expect( done ).toBe( true ); } ); } ); describe( 'yields with expected response when there is an error', () => { let fulfillment; const rewind = () => ( fulfillment = getCartData() ); test( 'when apiFetch returns a valid response, yields expected ' + 'action', () => { rewind(); fulfillment.next( 'https://example.org' ); const { value } = fulfillment.next( undefined ); expect( value ).toEqual( receiveError( CART_API_ERROR ) ); const { done } = fulfillment.next(); expect( done ).toBe( true ); } ); } ); } );
Save