import React from 'react'
import Box from '../Box'
describe('Box', () => {
it('renders a Box', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Box with an order attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Box with an align-self attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Box with a flex attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Box with a static height', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Box with a max-width', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Box with a min-height', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
})