diff --git a/src/common-components/vehicle-banner/vehicle-banner.spec.js b/src/common-components/vehicle-banner/vehicle-banner.spec.js index 26f1fcf69..20bbbdaf5 100644 --- a/src/common-components/vehicle-banner/vehicle-banner.spec.js +++ b/src/common-components/vehicle-banner/vehicle-banner.spec.js @@ -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();