refactor(web): output id in console error of playwright TC reporter
Some checks failed
Keyman Build Summary / Summarize build status checks (push) Has been cancelled

This commit is contained in:
Eberhard Beilharz 2026-04-17 10:05:33 +02:00
parent 115ab18d71
commit d93fc5aa7e
No known key found for this signature in database
GPG key ID: E9140597606020D3

View file

@ -172,7 +172,7 @@ class TestNode {
if (TestNode.Nodes.size > 0) {
console.error(`Still have ${TestNode.Nodes.size} nodes hanging around`);
for (const [id, node] of Array.from(TestNode.Nodes.entries())) {
console.error(`Remaining node title: '${node.suiteOrTest.title}'`);
console.error(`Remaining node title: '${node.suiteOrTest.title}' (id: '${id}')`);
}
}
}