UNPKG

@shopgate/engage

Version:
39 lines (37 loc) 658 B
export const mockedProduct1 = { productId: '1234' }; /** * Mocked state with product only. Favorites not set. * @type {Object} */ export const mockedStateWithDiscount = { product: { productsById: { [mockedProduct1.productId]: { productData: { price: { discount: 12 } } } } } }; /** * Mocked state with product only. Favorites not set. * @type {Object} */ export const mockedStateWithoutDiscount = { product: { productsById: { [mockedProduct1.productId]: { productData: { price: { discount: 0 } } } } } };