mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-04 03:56:33 +08:00
remove fdescribe
This commit is contained in:
parent
73f4c97910
commit
c443eb3331
3 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ ContenteditableComponent = React.createClass
|
||||||
propTypes:
|
propTypes:
|
||||||
html: React.PropTypes.string
|
html: React.PropTypes.string
|
||||||
style: React.PropTypes.object
|
style: React.PropTypes.object
|
||||||
tabIndex: React.PropTypes.number
|
tabIndex: React.PropTypes.string
|
||||||
onChange: React.PropTypes.func.isRequired
|
onChange: React.PropTypes.func.isRequired
|
||||||
|
|
||||||
getInitialState: ->
|
getInitialState: ->
|
||||||
|
|
|
@ -7,7 +7,7 @@ React = require "react/addons"
|
||||||
ReactTestUtils = React.addons.TestUtils
|
ReactTestUtils = React.addons.TestUtils
|
||||||
ContenteditableComponent = require "../lib/contenteditable-component.cjsx",
|
ContenteditableComponent = require "../lib/contenteditable-component.cjsx",
|
||||||
|
|
||||||
fdescribe "ContenteditableComponent", ->
|
describe "ContenteditableComponent", ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@onChange = jasmine.createSpy('onChange')
|
@onChange = jasmine.createSpy('onChange')
|
||||||
html = 'Test <strong>HTML</strong>'
|
html = 'Test <strong>HTML</strong>'
|
||||||
|
|
|
@ -8,7 +8,7 @@ React = require "react/addons"
|
||||||
ReactTestUtils = React.addons.TestUtils
|
ReactTestUtils = React.addons.TestUtils
|
||||||
ContenteditableComponent = require "../lib/contenteditable-component.cjsx",
|
ContenteditableComponent = require "../lib/contenteditable-component.cjsx",
|
||||||
|
|
||||||
fdescribe "ContenteditableComponent", ->
|
describe "ContenteditableComponent", ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@onChange = jasmine.createSpy('onChange')
|
@onChange = jasmine.createSpy('onChange')
|
||||||
html = 'Test <strong>HTML</strong>'
|
html = 'Test <strong>HTML</strong>'
|
||||||
|
|
Loading…
Reference in a new issue