We want to change the automated test execution from Jenkins to GitHub.
I have managed to execute the tests and see in the console what is happening during the execution, but reports are not generated in the specified folders, so no artefacts are published.
I am doing the following steps:
checkout repository
setup node JS
Install Test Cafe and create reports folders
npm install (in package.json it is defined the following reporter: "testcafe-reporter-html": "^1.4.6")
mkdir -p $SCREENSHOTS_DIR $VIDEOS_DIR $REPORTS_DIR => all variables are defined in the job like this:
Hello,
We want to change the automated test execution from Jenkins to GitHub. I have managed to execute the tests and see in the console what is happening during the execution, but reports are not generated in the specified folders, so no artefacts are published. I am doing the following steps:
The tests are executed, but the following warning appears on publish artefacts:
Do you have any idea what I am doing wrong? Thank you