Mailspring/internal_packages/tooltip/spec/tooltip-spec.cjsx

16 lines
398 B
Plaintext
Raw Normal View History

# Testing the Tooltip component
_ = require 'underscore'
React = require 'react/addons'
ReactTestUtils = React.addons.TestUtils
Tooltip = require '../lib/tooltip'
describe "Tooltip", ->
beforeEach ->
@tooltip = ReactTestUtils.renderIntoDocument(
<Tooltip />
)
it "renders to the document", ->
expect(ReactTestUtils.isCompositeComponentWithType @tooltip, Tooltip).toBe true