npm测试失败,没有任何错误消息

时间:2019-03-16 21:17:05

标签: javascript node.js unit-testing npm

测试失败,没有错误,仅显示以上消息。

我的测试脚本是:

"test": "TEST=true tape test/core/*.js test/core/ui/user-interface.js test/core/modules/QR.js | tap-spec; browserify test/core/modules/image-sequencer.js test/core/modules/chain.js test/core/modules/meta-modules.js test/core/modules/replace.js test/core/modules/import-export.js test/core/modules/run.js test/core/modules/dynamic-imports.js test/core/util/parse-input.js test/core/modules/benchmark.js| tape-run --render="tap-spec"", 

规格:

  • 操作系统:Ubuntu 18.04.1
  • 节点:10.15.3
  • npm:6.4.1

1 个答案:

答案 0 :(得分:0)

您提供的测试脚本是有限的,但最突出的第一件事是在测试值tape-run --render =“ tap-spec”“的末尾转义报价

“ test”:“ TEST = true磁带... |磁带运行--render = \” tap-spec \“”,

您应该包括整个package.json文件,因为我想知道您是否需要require(“ babel-register”)以及所需的依赖项 What does "register" mean in "babel/register"