如何通过使用多个记者的JavaScript API执行Node.js测试跑者?

问题描述 投票:0回答:1
-TestRunner

通过指定命令行选项--test-reporter--test-reporter-destination多次来使用

MultipleReporters支持。
例如,在执行以下命令时,测试跑者将以规格格式将测试结果打印为标准输出,并将Junit风格的XML报告写入文件Junit.xml:
node --test --test-reporter spec --test-reporter-destination stdout --test-reporter junit --test-reporter-destination ./report.xml

node.js测试跑者也可以通过JavaScript API执行函数

run

import { join } from "node:path";
import { run } from "node:test";
import { spec } from "node:test/reporters";

run({ files: [join(import.meta.dirname, "test", "my.test.js")] })
  .compose(spec)
  .pipe(process.stdout);
现在,我有一个从另一个脚本执行

run
函数的方案,我想用两个记者执行它,类似于上面的命令行示例。如何实现?

您总是可以将

javascript node.js unit-testing testing node-test-runner
1个回答
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.