mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 05:41:05 +08:00
17 lines
473 B
Text
17 lines
473 B
Text
|
{React, ReactTestUtils, Message} = require 'nylas-exports'
|
||
|
|
||
|
KeybaseSearch = require '../lib/keybase-search'
|
||
|
|
||
|
describe "KeybaseSearch", ->
|
||
|
it "should have a displayName", ->
|
||
|
expect(KeybaseSearch.displayName).toBe('KeybaseSearch')
|
||
|
|
||
|
it "should have no results when rendered", ->
|
||
|
@component = ReactTestUtils.renderIntoDocument(
|
||
|
<KeybaseSearch />
|
||
|
)
|
||
|
|
||
|
expect(@component.state.results).toEqual([])
|
||
|
|
||
|
# behold, the most comprehensive test suite of all time
|