UNPKG

wix-style-react

Version:
23 lines (20 loc) 579 B
import eyes from 'eyes.it'; import { createStoryUrl } from '../../test/utils/storybook-helpers'; import storySettings from '../../stories/Layout/story-settings'; describe('Layout', () => { [ storySettings.holyGrailLayout, storySettings.listOfCards, storySettings.mainAndSide, storySettings.form, ].forEach(story => eyes.it(`should render ${story}`, async () => { const url = createStoryUrl({ kind: storySettings.examplesCategory, story, }); await browser.get(url); await eyes.checkWindow(story); }), ); });