0

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

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
4

1 回答 1

1

这是一个疯狂的猜测,但有变化:

before: ->before: =>

看看这是否有帮助。

于 2013-02-07T21:20:50.443 回答