我是单元测试的新手,我刚刚安装了茉莉花并编写了此测试程序。
var grabNums = require('parser')
describe("parsenpmr test", function(){
it(" .3grabs possible phone and conference numbers", function(){
expect(grabNums.grabNums("the phone number is (914)-817-3535 and the conference code is 5852753333 please call in at 6:00AM").toBe(['(914)8173535','5852753333']))
})
})
My Directory organization looks like this at the moment
这是我得到的错误
> outlookparser2@1.0.0 test C:\Users\kaizert\eclipse-workspaceREAL\client_S4B\src\outlookParser2
> jasmine
module.js:549
throw err;
^
Error: Cannot find module 'parser.js'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\Users\kaizert\eclipse-workspaceREAL\client_S4B\src\outlookParser2\spec\parserspec.js:1:78)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
npm ERR! Test failed. See above for more details.
我需要更改什么?再次,我是单元测试的新手,因此,如果对此有一个简单的解决方案,我对不起,我在网上找不到任何内容。
答案 0 :(得分:0)
我想解决方法是: var parser = require('./ parser');
答案 1 :(得分:-1)
我发现了我的问题。我不认为这对其他许多人来说都是个问题,但是我没有正确地引用我的实际.js文件。我有
var parser = require('parser');
我应该有的时间
var parser = require('parser');