box-ui-elements-mlh
Version:
11 lines (10 loc) • 415 B
JavaScript
describe('components/select-button/SelectButton', () => {
test.each([
['components-selectbutton--regular'],
['components-selectbutton--disabled'],
['components-selectbutton--with-error'],
])('looks visually correct when using story %s', async id => {
const image = await BoxVisualTestUtils.takeScreenshot(id);
return expect(image).toMatchImageSnapshot();
});
});