gpt4 book ai didi

typescript - 从 typescript 进行 mocha 测试调试的问题

转载 作者:搜寻专家 更新时间:2023-10-30 21:35:12 26 4
gpt4 key购买 nike

我正在尝试调试 mocha 测试,但我遇到了一个问题,我不知道该如何解决。我之前在 google 和 stackoverflow 上搜索过,但都没有成功。

错误是:

TSError: ⨯ Unable to compile TypeScript:
source-map-support.js:444 error TS2468: Cannot find global value 'Promise'.backend/test/textToSpeech/lib.ts(11,30): error TS2705: An async
function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your `--lib` option.backend/test/textToSpeech/lib.ts(12,27): error TS2705: An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your `--lib` option.

tsconfig.json 文件如下所示:

{
"compilerOptions": {
"module": "commonjs",
"watch": true,
"noImplicitAny": false,
"removeComments": true,
"outDir": "./dist",
"sourceMap": true,
"target": "es6",
"lib": [
"ES2015"
],
"types": [
"node",
"pg-promise"
],
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}

vscode launch.json 配置是 vscode launch.json 配置是

{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/backend/node_modules/mocha/bin/_mocha",
"args": [
"--require", "ts-node/register",
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/backend/test/textToSpeech/lib.ts"
],
"internalConsoleOptions": "openOnSessionStart"
}

测试文件:

import {} from 'mocha'
import { expect } from 'chai'
import config from '../configuration'
import { TextToSpeechLib } from '../../src/libs/textToSpeech/'
var textToSpeach = new TextToSpeechLib(config)

var text = 'Hello world'


describe('TextToSpeach lib', async () => {
it ('Convert text ...', async () => {
console.log("==== =a= =s= a==")
let resp = await textToSpeach.convertText(text);
expect(resp.status).to.be.equal('success')
})
})

我尝试了很多东西。就像启动器不加载 tsconfig.我试图在启动器配置中将“--lib”、“'ES2015'”作为参数传递。谢谢。

最佳答案

更新:这个答案是旧的。现在可能有更好的方法来解决这个问题。我最近没有测试过。

错误消息清楚地告诉您该怎么做:

Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your --lib option

由于我们绝对不想提供自己的定义,因此我们应该继续在选项中包含“ES2015”。

怎么做?

所有这些 ts-node 内容都非常复杂。有这方面经验的人可能会告诉您如何指向特定的 tsconfig,但我不能。我建议设置一个环境变量来实现这个目标。

我深入研究了源代码,发现必要的环境变量是 TS_NODE_COMPILER_OPTIONS,这意味着在调用 ts-node 时,process.env 必须具有以下属性:

TS_NODE_COMPILER_OPTIONS={"lib": ["ES2015"], ...}

以及如何做到这一点?

使用 VS Code 进行调试时,您可以通过在配置中添加以下内容来实现此目标:

"env": {"TS_NODE_COMPILER_OPTIONS":"{\"lib\": [\"ES2015\"]}"}

当您想运行测试时,例如使用 npm test,您可以在使用 cross-env 运行测试脚本之前将此选项添加到环境变量中.

我最终在我的 package.json 中写了这样的东西:

"scripts": {
"test": "cross-env TS_NODE_COMPILER_OPTIONS=\"{\\\"lib\\\": [\\\"ES2015\\\"]}\" mocha --require ts-node/register path/to/test(s).ts"
}

注意 - 三重反斜杠是有意的

关于typescript - 从 typescript 进行 mocha 测试调试的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52357172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com