import React from 'react' import Grid from '../Grid' describe('Grid', () => { it('renders a Grid', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with an align-items attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with an align-content attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a grid-column-gap attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a gap attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a grid-template-columns attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a grid-template-rows attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a justify-items attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a justify-content attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a grid-template-areas attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with a grid-row-gap attribute', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with 4 columns', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) it('renders a Grid with 4 rows', () => { const tree = shallow() expect(tree).toMatchSnapshot() }) })