import React from 'react';
import { create } from 'react-test-renderer';
import { NavItem } from '..';
test('Default', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
});
test('Active', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
});
test('Disable', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
});
test('Download', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
});