mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
20 lines
705 B
Text
20 lines
705 B
Text
|
React = require 'react'
|
||
|
ReactTestUtils = React.addons.TestUtils
|
||
|
|
||
|
{Actions} = require 'inbox-exports'
|
||
|
|
||
|
SearchBar = require '../lib/search-bar'
|
||
|
SearchSuggestionStore = require '../lib/search-suggestion-store.coffee'
|
||
|
|
||
|
describe 'SearchBar', ->
|
||
|
beforeEach ->
|
||
|
@searchBar = ReactTestUtils.renderIntoDocument(<SearchBar />)
|
||
|
input = ReactTestUtils.findRenderedDOMComponentWithTag(@searchBar, "input")
|
||
|
@input = React.findDOMNode(input)
|
||
|
|
||
|
it 'supports search queries with a colon character', ->
|
||
|
spyOn(Actions, "searchQueryChanged")
|
||
|
test = "::Hello: World::"
|
||
|
ReactTestUtils.Simulate.change @input, target: value: test
|
||
|
expect(Actions.searchQueryChanged).toHaveBeenCalledWith [all: test]
|