mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
7190ca69f7
Summary: Major ID refactor Test Plan: edgehill --test Reviewers: bengotow, dillon Differential Revision: https://phab.nylas.com/D1946
25 lines
774 B
CoffeeScript
25 lines
774 B
CoffeeScript
{React} = require 'nylas-exports'
|
|
ReactTestUtils = React.addons.TestUtils
|
|
|
|
MyComposerButton = require '../lib/my-composer-button'
|
|
|
|
dialogStub =
|
|
showMessageBox: jasmine.createSpy('showMessageBox')
|
|
|
|
describe "MyComposerButton", ->
|
|
beforeEach ->
|
|
@component = ReactTestUtils.renderIntoDocument(
|
|
<MyComposerButton draftClientId="test" />
|
|
)
|
|
|
|
it "should render into the page", ->
|
|
expect(@component).toBeDefined()
|
|
|
|
it "should have a displayName", ->
|
|
expect(MyComposerButton.displayName).toBe('MyComposerButton')
|
|
|
|
it "should show a dialog box when clicked", ->
|
|
spyOn(@component, '_onClick')
|
|
buttonNode = React.findDOMNode(@component.refs.button)
|
|
ReactTestUtils.Simulate.click(buttonNode)
|
|
expect(@component._onClick).toHaveBeenCalled()
|