TechNote/app/components/__tests__/EntrySelector-test.jsx
Joey Payne d14eed9965 Add state for navigation
Currently selected navigation item is available under the navigation
variable so that the whole application has access to it.
2016-03-06 11:08:42 -07:00

17 lines
474 B
JavaScript

jest.autoMockOff()
import React from 'react'
import ReactDOM from 'react-dom'
import TestUtils from 'react-addons-test-utils'
const EntrySelector = require('../EntrySelector').default
describe('EntrySelector', () => {
it('test jest', () => {
var entrySelector = TestUtils.renderIntoDocument(
<EntrySelector id="entry-selector" className="left inline fill-height" />
)
expect(entrySelector.state.notes.length).toEqual(0)
})
})