deno test --reporter=tapdeno test --reporter=tap. I would like to add additional fields (medatata) to test output as YAML Diagnostic document. This would require some Deno test API for adding metadata:Deno.test({ name: "some test", metadata: { foo: "bar" }, fn: () => {});Deno.test({ name: "some test", metadata: { foo: "bar" }, fn: () => {}); or Deno.test({ name: "some test", fn: (t) => { t.set("foo", "bar"); });Deno.test({ name: "some test", fn: (t) => { t.set("foo", "bar"); });TAP version 14
# ./foo.test.ts
ok 1 - some test
---
foo: bar
...TAP version 14
# ./foo.test.ts
ok 1 - some test
---
foo: bar
...Join the Discord to ask follow-up questions and connect with the community