import React from 'react'
import Flex from '../Flex'
describe('Flex', () => {
it('renders a Flex', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with an align-items attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with an align-content attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with a flex-direction attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with a justify-content attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with a wrap attribute', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with a max-width', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
it('renders a Flex with a min-height', () => {
const tree = shallow()
expect(tree).toMatchSnapshot()
})
})