import * as React from 'react';
import { shallow } from 'enzyme';
import TestComponentPropUtils from '../../../utils/TestComponentPropUtils';
import { Stepper, Step } from './Stepper';
describe('Stepper', () => {
it('renders without crashing', () => {
shallow(Setup Site);
});
it('renders basic react props like id, className, and style as element attributes', () => {
const shallowWrapper = shallow(
Setup Site
);
TestComponentPropUtils.expectsBasicReactProps(shallowWrapper, false);
});
});