所以。我试图弄清楚为什么这不起作用。
我正在src
andtests
目录中的文件中编写源代码和测试 TypeScript 代码。这些是*.ts
和*.spec.ts
文件。
我用来npx tsc
将源文件和测试文件都转译到目录build
中。所以这个目录现在包含、 和*.js.
文件*.spec.js
类型。*.js.map
*.spec.js.map
我现在如何设置 mocha 和 nyc 来使用它?
我有以下一套。
.nycrc.json
{
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"branches": 0,
"lines": 0,
"functions": 0,
"statements": 0,
"check-coverage": true,
"exclude": [".ignore", "coverage"],
"report-dir": "./coverage/",
"cache": false,
"source-map": true,
"produce-source-map": true
}
tsconfig.json:
{
"compilerOptions": {
"allowJs": true,
"noImplicitAny": false,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"module": "commonjs",
"target": "es2016",
"lib": ["es2016"],
"moduleResolution": "node",
"types": ["mocha", "node"],
"typeRoots": ["node_modules/@types"],
"sourceMap": true,
"outDir": "./build/",
"skipLibCheck": true,
"removeComments": false
},
"include": ["./**/*.ts", "./**/*.js"]
}
错误:
karl@karl-Dell-Precision-M3800:~/dev/escd$ NODE_ENV=test npx nyc --reporter=html --reporter=text mocha "./build/tests/**/*.js"
mappedCoverage.addStatement is not a function
但是,如果我在文件中设置all
为,那么它不会抱怨。这是怎么回事?false
.nycrc.json
我不想使用ts-node
或类似的东西,我已经编译了文件。