//filename: test-reporter_test.ts
import { afterEach, beforeEach, it } from "https://deno.land/std@0.197.0/testing/bdd.ts";
import { assert } from "https://deno.land/std@0.197.0/assert/assert.ts";
it("test ok", ()=>{
assert(true);
})
$ deno test -A --reporter junit test-reporter_test.ts
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="deno test" tests="1" failures="0" errors="0" time="0.094">
<testsuite name="https://deno.land/std@0.197.0/testing/_test_suite.ts" tests="1" disabled="0" errors="0" failures="0">
<testcase name="test ok" time="0.009">
</testcase>
</testsuite>
</testsuites>
testsuite.name is https://deno.land/std@0.197.0/testing/_test_suite.ts, expect test-reporter_test.ts