1つのテスト言語(アサーションとマッチャー)を使用して、ユニットテストとBDD/機能テストの両方を実行したいと思います。すなわち
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
ジャスミンノードを必要とすることは切断されていません、私は何が欠けていますか?