mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
16 lines
408 B
Text
16 lines
408 B
Text
|
# Testing the Tooltip component
|
||
|
_ = require 'underscore-plus'
|
||
|
React = require 'react/addons'
|
||
|
ReactTestUtils = React.addons.TestUtils
|
||
|
|
||
|
Tooltip = require '../lib/tooltip.cjsx'
|
||
|
|
||
|
describe "Tooltip", ->
|
||
|
beforeEach ->
|
||
|
@tooltip = ReactTestUtils.renderIntoDocument(
|
||
|
<Tooltip />
|
||
|
)
|
||
|
|
||
|
it "renders to the document", ->
|
||
|
expect(ReactTestUtils.isCompositeComponentWithType @tooltip, Tooltip).toBe true
|