gpt4 book ai didi

node.js - 如何用 Vows 和 Node.js 解决 "callback not fired"

转载 作者:搜寻专家 更新时间:2023-10-31 23:22:32 26 4
gpt4 key购买 nike

我正在尝试开始使用 VowsVows-BDD .不幸的是,回调让我绊倒了。

在下面这个非常简单的例子中,如何修复这个错误?

** Inside the first context
** Creating Person with name Nick

✗ Errored » callback not fired
in Create a Person via JavaScript: When a person has a name,
in Creating a Person
in undefined✗ Errored » 1 errored 1 dropped
vows_bdd  = require "vows-bdd"
assert = require "assert"


class Person
constructor: (@name) ->
console.log "** Creating Person with name #{@name}"

greeting: ->
"Hello, #{@name}"


vows_bdd
.Feature("Creating a Person")
.scenario("Create a Person via JavaScript")

.when "a person has a name", ->
console.log "** Inside the first context"
new Person "Nick"

.then "the person can be greeted", (person) ->
console.log "person is a #{typeof person} = [#{person}]"
assert.equal person.greeting(), "Hello, Nick"

.complete()
.finish(module)

最佳答案

我知道这篇文章很旧,但由于这是有人搜索此错误时的第一个结果,所以我发布了我的答案。

我发现这篇文章在处理错误时很有帮助。 http://birkett.no/blog/2013/05/01/vows-errored-callback-not-fired/ .

在我的代码中,错误是由于其中一个主题发生了异常。 Vows 不打印实际错误,因为它很难理解确切的问题。

关于node.js - 如何用 Vows 和 Node.js 解决 "callback not fired",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10474002/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com