我喜欢使用一种测试语言(断言和匹配器)来进行单元测试和 BDD/功能测试。IE
stepDefinitions = ->
@World = require("../support/world").World
@Given /^I visit the website$/, (cb) ->
(@visit 'http://localhost:3000', cb)
@Then /^I should see "([^"]*)"'s homepage$/, (title, cb) ->
(expect @browser.html()).not.toBeNull()
cb?()
module.exports = stepDefinitions
要求 jasmine-node 没有切割,我错过了什么?