box-ui-elements-mlh
Version:
12 lines (11 loc) • 428 B
JavaScript
describe('components/toggle/Toggle', () => {
test.each([
['components-toggle--basic'],
['components-toggle--right-aligned'],
['components-toggle--controlled'],
['components-toggle--disabled'],
])('looks visually correct when using story %s', async id => {
const image = await BoxVisualTestUtils.takeScreenshot(id);
return expect(image).toMatchImageSnapshot();
});
});