From 5d4b38282f095b2ab19883859569c6e26d7747a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ari=20Perkki=C3=B6?= Date: Sat, 2 Nov 2024 10:32:38 +0200 Subject: [PATCH] docs(reporters): junit env variables removed in v2 (#6841) --- docs/guide/reporters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/reporters.md b/docs/guide/reporters.md index 3f97088ecead..03050696eaff 100644 --- a/docs/guide/reporters.md +++ b/docs/guide/reporters.md @@ -249,7 +249,7 @@ AssertionError: expected 5 to be 4 // Object.is equality ``` -The outputted XML contains nested `testsuites` and `testcase` tags. You can use the environment variables `VITEST_JUNIT_SUITE_NAME` and `VITEST_JUNIT_CLASSNAME` to configure their `name` and `classname` attributes, respectively. These can also be customized via reporter options: +The outputted XML contains nested `testsuites` and `testcase` tags. You can use the reporter options to configure these attributes: ```ts export default defineConfig({