I'm using allure 2.8.1. I've installed it with NPM into my docker container. After it I run allure generate test-results
command to generate allure report from junit xml's, that are generated with newman tool.
In report directory there appears an empty directory data/attachments
and directory data/test-cases
with all test cases from junit xml's.
Example of test-case xml:
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="test-collection-2" tests="1" time="0.463">
<testsuite name="Test succeed request" id="b3ce6542-d493-4206-b67b-e74e4ca58fde" tests="2" failures="0" errors="0" time="0.463">
<testcase name="Status code is 200" time="0.463"/>
<testcase name="Content-Type is present" time="0.463"/>
</testsuite>
</testsuites>
After I open generated input html there appears nothing.
Can you please assist me with this problem?