CSR-120: update unit tests for recent updates in develop branch

This commit is contained in:
Adam Caouette 2021-12-06 10:31:10 -05:00
parent edf9608b0d
commit 53760c6794

View file

@ -6,11 +6,13 @@ describe('vehicleBanner', () => {
test('renders the blurrycar image', () => {
// Arrange
const mountOptions = getMountOptions();
const mountOptions = getMountOptions({});
// Act
const wrapper = shallowMount(vehicleBanner, {
...mountOptions
});
// Assert
expect(wrapper.find('img').attributes('class')).toContain('blurrycar');
wrapper.unmount();