UNPKG

tin-react-components

Version:
33 lines (32 loc) 732 B
import React from 'react' import { mount } from 'enzyme' import { expect } from 'chai' import Nav from '../index' const links = [ { 'displayName': 'Schedule', 'description': 'Manual Dispatch', 'path': '/schedule/manage', 'icon': 'icon-calendar' }, { 'displayName': 'Dispatch', 'description': 'Auto Dispatch Configuration', 'path': '/dispatch/configuration', 'icon': 'icon-cogs' }, { 'displayName': 'Users', 'description': 'Manage user accounts', 'path': '/users/manage', 'icon': 'icon-user' } ] /** * @author: Jason Baddley */ describe('<Nav />', () => { it('UNTESTABLE WITHOUT ROUTES: should show a anchor elements', () => { expect([1]).to.have.length(1) }) })