BusterJs在CoffeeScript中测试

时间:2013-02-07 08:06:12

标签: coffeescript buster.js

我接下来的测试。出于某种原因,我在before函数中设置的@$e在测试中未定义:

assert = buster.assert
buster.testCase 'BaseChart',

  before: ->
    @el = sinon.spy()
    @$el = [@el]
    console.log(@$el) 
    ##[LOG] [function spy() {}]

  'updates when the model changed': ->
    console.log(@$el)
    ##[LOG] undefined

1 个答案:

答案 0 :(得分:1)

这是一个疯狂的猜测,但改变了:

before: ->before: =>

看看是否有帮助。