import React from 'react';
import { render } from '@testing-library/react-native';
import { CheckoutIndicators } from '..';
const checkoutIndicatorsProps = {
incomes: 150,
missings: 200,
skus: 20,
};
describe('Test CheckoutIndicators component', () => {
it('render with status new', () => {
const component = render(
);
expect(component).toBeDefined();
expect(component.toJSON()).toMatchSnapshot();
});
});