4

TS_NODE_PROJECT当 ts-node 用于使用 Mocha 进行测试时,我无法使用 env 变量。

项目结构如下所示:

src/
  main_test.ts
  tsconfig.json
package.json

在我的测试中,我想使用一个异步函数,它需要"lib": ["es2018"]作为编译选项。

// src/main_test.ts
describe('', () => {
    it('test', () => {
        (async function() {})()
    });
});

// src/tsconfig.json
{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es5",
    "sourceMap": true,
    "lib": ["es2018"]
  },
  "exclude": [
    "../node_modules"
  ]
}

为了运行测试,我使用了这个命令,但它会导致错误:

TS_NODE_PROJECT='src' && mocha --require ts-node/register src/*_test.ts
# TSError: ⨯ Unable to compile TypeScript:
# error TS2468: Cannot find global value 'Promise'.
# src/main_test.ts(3,10): 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.

这意味着src/tsconfig.json未使用。根据Overriding `tsconfig.json` for ts-node in mocha 和 ts-node 文档,该命令应该将正确的tsconfig.json路径传递给 ts-node。

移动src/tsconfig.json到项目目录并运行相同的命令会导致测试成功。如何将tsconfig.json路径传递给 ts-node 以便测试正确编译?

4

2 回答 2

7

哦。多么尴尬...

TS_NODE_PROJECT='src/tsconfig.json' mocha --require ts-node/register src/*_test.ts
于 2019-02-05T07:20:23.213 回答
0

我发现在不同的文件中移动 mocha 设置非常有用,因此 package.json 保持干净,您可以使用这样的mocharc文件:

module.exports = {
  ignore: [
    './test/helpers/**/*',
    './test/mocha.env.js'
  ],
  require: [
    'test/mocha.env', // init env here
    'ts-node/register'
  ],
  extension: [
    'ts'
  ]
}

然后test/mocha.env.js使用以下内容创建文件(或根据需要调用它):

process.env.NODE_ENV = 'test'
process.env.TS_NODE_PROJECT = 'src/tsconfig.json'
于 2020-06-01T16:46:27.050 回答