UNPKG

test-weather-fork

Version:
18 lines (16 loc) 421 B
import React from 'react'; // eslint-disable-next-line import/no-extraneous-dependencies import snapshot from 'check-snapshot'; import WeatherIcon from '../src/js/components/WeatherIcon'; describe('WeatherIcon', () => { test('render WeatherIcon', () => { snapshot( <WeatherIcon path="svg path here" size={120} color="white" title="icon description" />, ); }); });