摩卡纽约市和源地图

时间:2019-06-13 14:14:54

标签: typescript mocha source-maps nyc

所以。我正在设法弄清为什么它不起作用。

我正在srctests目录中的文件中编写源代码并测试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或类似的东西,我已经编译了文件。

1 个答案:

答案 0 :(得分:0)

https://github.com/istanbuljs/nyc#source-map-support-for-pre-instrumented-codebases

我必须删除"extends": "@istanbuljs/nyc-config-typescript",并添加"exclude-after-remap": false,