Hello there,
I would like to suggest adding support for properties on a test case level. As more and more tools such as CI and test management tools support test case properties, and as it can be very useful to include additional test attributes for tests, I think it would be a great addition for the Jest JUnit reporter.
This is also supported by various other test frameworks such as pytest or Playwright, as well as reporting and test management tools such as Testmo.
Properties for test cases
Here is an example of what test case properties look like in the resulting XML file. This is the same format as supported for the testsuite element, just below the testcase element:
<testcase name="testCase3" classname="Tests.Registration" time="3.441">
<properties>
<property name="priority" value="high" />
<property name="language" value="english" />
<property name="author" value="Adrian" />
<property name="attachment" value="screenshots/dashboard.png" />
<property name="attachment" value="screenshots/users.png" />
<!-- Optional support for properties with text values -->
<property name="description">
This text describes the purpose of this test case and provides
an overview of what the test does and how it works.
</property>
</properties>
<!-- Optional output or error/failure/skipped -->
</testcase>
You can also find additional details on this format here as well as a full XML example file.
Possible API
I'm not sure what the best API would look like in Jest JUnit, but the API should ideally support multiple properties with the same name. Maybe something like this:
this.test.properties = [
{ name: 'author', value: 'Adrian' },
{ name: 'priority', value: 'high' },
{ name: 'attachment', value: 'screenshots/dashboard.png' },
{ name: 'attachment', value: 'screenshots/users.png' },
{ name: 'attachment', value: 'screenshots/error.png' },
];
Hello there,
I would like to suggest adding support for properties on a test case level. As more and more tools such as CI and test management tools support test case properties, and as it can be very useful to include additional test attributes for tests, I think it would be a great addition for the Jest JUnit reporter.
This is also supported by various other test frameworks such as
pytestorPlaywright, as well as reporting and test management tools such as Testmo.Properties for test cases
Here is an example of what test case properties look like in the resulting XML file. This is the same format as supported for the
testsuiteelement, just below thetestcaseelement:You can also find additional details on this format here as well as a full XML example file.
Possible API
I'm not sure what the best API would look like in Jest JUnit, but the API should ideally support multiple properties with the same name. Maybe something like this: