woocommerce/plugins/woocommerce-admin/client/components/rating/test/index.js

56 lines
1.2 KiB
JavaScript
Raw Normal View History

/** @format */
/**
* External dependencies
*/
import { shallow } from 'enzyme';
/**
* Internal dependencies
*/
import { ReviewRating, ProductRating, Rating } from '../';
describe( 'Rating', () => {
test( 'should render the passed rating prop', () => {
const rating = shallow( <Rating rating={ 4 } /> );
expect( rating ).toMatchSnapshot();
} );
test( 'should render the correct amount of total stars', () => {
const rating = shallow( <Rating rating={ 4 } totalStars={ 6 } /> );
expect( rating ).toMatchSnapshot();
} );
test( 'should render stars at a different size', () => {
const rating = shallow( <Rating rating={ 1 } size={ 36 } /> );
expect( rating ).toMatchSnapshot();
} );
} );
describe( 'ReviewRating', () => {
test( 'should render rating based on review object', () => {
const rating = shallow(
<ReviewRating
review={ {
review: 'Nice T-shirt!',
rating: 1.5,
} }
/>
);
expect( rating ).toMatchSnapshot();
} );
} );
describe( 'ProductRating', () => {
test( 'should render rating based on product object', () => {
const rating = shallow(
<ProductRating
product={ {
name: 'Test Product',
average_rating: 2.5,
} }
/>
);
expect( rating ).toMatchSnapshot();
} );
} );