我有一个用coffeescript编写的准系统规范:
# test/foobar.spec.coffee
describe "falsy test", ->
it "should fail", ->
expect(true).toBe false
当我从项目目录运行jasmine-node --coffee test/foobar.spec.coffee
时,出现以下错误:
Exception loading: /Users/myuser/programming/project/test/foobar.spec.coffee
{ [Error: Cannot find module '/Users/myuser/programming/project/test/foobar.spec'] code: 'MODULE_NOT_FOUND' }
我正在使用:
node --version
v0.10.8
jasmine-node --version
1.13.0
有谁知道为什么会这样?
答案 0 :(得分:0)
我遇到了与其他软件包类似的问题(require,supertest)。看起来如果你全局安装它们(npm install -g)比你得到这个错误。使用本地安装(没有-g选项)一切似乎都很正常。
答案 1 :(得分:0)
我以一种奇怪的方式遇到了这个错误。
以下代码有效,
function someFunc(){
//do something
}
describe(testCases.testCaseRegister.name, async function(){
someFunc();
//ensure ample time for database to be setup properly
await new Promise(done => setTimeout(done, 5000));
}
但是当我更改为该选项时,将出现错误,并且偶尔会出现“语法错误:等待仅在异步函数中有效”
function someFunc(){
//do something
await new Promise(done => setTimeout(done, 5000));
}
describe(testCases.testCaseRegister.name, async function(){
someFunc();
}
切换回我的原始代码,解决了所有这些错误。