微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

node.js – 如何追踪导致超时的原因?

我正在使用Mocha进行一些测试.当我进入一组特定的测试时:

describe "Results Summaries",->
    before (done) ->
        Testing.use("surveyplanet_test")
        Testing.initialUsers -> Testing.clearResultData ->
            done()

    beforeEach (done) ->
        Testing.redis.flushdb -> done()

    describe "Multiple Choice",->

        describe "Standard Choice Selection",->
            before (done) ->
                Testing.clearResultData ->
                    Testing.loadQuestion "standardMC",->
                        Testing.loadExportData
                            data: summarydata.standardMC
                            onComplete: done

            describe "Pre-Summarization",->
                before (done) ->
                    answer_data = {}
                    Testing.getMultipleTables
                        tables: ["answers_main"]
                        onComplete: (data) ->
                            answer_data = data
                            done()

它抛出错误

Results Summaries
1) “before all” hook

✖ 1 of 340 tests Failed:

1) Results Summaries “before all” hook:
Error: timeout of 2000ms exceeded
at Object. (/usr/local/lib/node_modules/mocha/lib/runnable.js:142:14)
at Timer.list.ontimeout (timers.js:101:19)

有没有办法得到我的代码丢弃错误的堆栈跟踪?

解决方法

我试着改变你的记者.我用

mocha – 编译器咖啡:咖啡脚本* .coffee –ui bdd -d –watch -R Nyan并且当我失败时得到大约20行的痕迹.

超时通常意味着(我从未见过它)你的done()没有被击中.我怀疑这两个中的一个

Testing.initialUsers – > Testing.clearResultData – >

没有调用它的回调.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐