我将源代码和测试分开如下:
`src/main/ts/hello.ts` //SOURCE FILES HERE
`src/test/ts/hello.spec.ts` //SPEC FILES HERE
中的导入语句src/test/ts/hello.spec.ts
如下所示:
import hello from 'hello';
hello.ts
源代码如下所示:
export function hello() {
return 'Hello World!';
}
export default hello;
我tsconfig.json
的设置使得测试文件可以在不使用相对路径的情况下导入源模块,如下所示:
{
"include": [
"src/main/ts/**/*.ts"
],
"exclude": [
"node_modules"
],
"compilerOptions": {
"experimentalDecorators": true,
"noImplicitAny": true,
"moduleResolution": "node",
"target": "es6",
"baseUrl": ".",
"paths": {
"*": [
"*", "src/main/ts/*"
]
}
}
}
这样文件可以使用语句hello.spec.ts
导入hello
import hello from 'hello';
我正在尝试运行npm test
配置为像这样运行 mocha 和 tsnode 的测试(基于这篇文章):
"scripts": {
"test": "mocha -r ts-node/register src/test/ts"
},
tsconfig.json
但是,当我收到此错误时,它看起来不像 ts-node 正在接受我的配置:
mocha -r ts-node/register src/test/ts
Error: Cannot find module 'hello'
at Function.Module._resolveFilename (module.js:336:15)
at Function.Module._load (module.js:286:25)