Mailspring/internal_packages/tooltip/spec/tooltip-spec.cjsx
Evan Morikawa 033008e036 feat(tooltip): add informational tooltip component
Summary: Add tooltip. To use just add a data-tooltip="plain string"

Test Plan: edgehill --test

Reviewers: bengotow

Reviewed By: bengotow

Differential Revision: https://review.inboxapp.com/D1288
2015-03-12 18:09:10 -04:00

16 lines
408 B
CoffeeScript

# 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