import React from 'react'
import GridBox from '../GridBox'
describe('GridBox', () => {
it('renders a GridBox', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an align-self attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an justify-self attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-column-start attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-column-end attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-column attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-row-start attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-row-end attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-row attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a GridBox with an grid-area attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
})