import * as React from 'react';
import { Gallery } from '../Gallery';
import { GalleryItem } from '../GalleryItem';
import { render } from '@testing-library/react';
test('gutter', () => {
const { asFragment } = render();
expect(asFragment()).toMatchSnapshot();
});
test('gutter breakpoints', () => {
const { asFragment } = render(
);
expect(asFragment()).toMatchSnapshot();
});
test('alternative component', () => {
const { asFragment } = render(
Test
);
expect(asFragment()).toMatchSnapshot();
});