通过指定命令行选项--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
函数的方案,我想用两个记者执行它,类似于上面的命令行示例。如何实现?
您总是可以将
run
以下示例报告了Spec Reporter和Junit XML文件的结果。
import { createWriteStream } from "node:fs";
import { join } from "node:path";
import { run } from "node:test";
import { junit, spec } from "node:test/reporters";
const stream = run({ files: [join(import.meta.dirname, "test", "my.test.js")] });
stream.compose(junit).pipe(createWriteStream("unit.xml", "utf-8"));
stream.pipe(spec()).pipe(process.stdout);