diff --git a/assets/images/hyperexecute/release-notes/robot-report.png b/assets/images/hyperexecute/release-notes/robot-report.png new file mode 100644 index 000000000..c8a572f6b Binary files /dev/null and b/assets/images/hyperexecute/release-notes/robot-report.png differ diff --git a/docs/hyperexecute-release-notes-2-7-8.md b/docs/hyperexecute-release-notes-2-7-8.md index 123776d28..70a19fd19 100644 --- a/docs/hyperexecute-release-notes-2-7-8.md +++ b/docs/hyperexecute-release-notes-2-7-8.md @@ -74,4 +74,29 @@ HyperExecute expands its support for the dotnet by introducing the versions `4.7 runtime: - language: dotnet version: "4.7" -``` \ No newline at end of file +``` + +## Support for Project Capability in CypressOps +You can now define your [Project](https://www.lambdatest.com/support/docs/hyperexecute-projects/) name and autocreate your project via `ProjectName` capability defined in [`cypressOps`](https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#cypressops). + +```yaml +cypressOps: + ProjectName: "Cypress_Project" +``` + +## Consolidated Native Robot Report Generation +The consolidated Native Robot report includes detailed information on all executed tests, i.e., which tests passed, failed, or were skipped, along with any error messages and stack traces for failed tests. It is widely supported across CI/CD tools, which makes it easy to integrate with existing workflows and with other tools or systems. + +Add the following configurations in your YAML file: + +```yaml +testRunnerCommand: YOUR_RUNNER_COMMAND --outputdir Reports + +report: true +partialReports: + type: json + location: Reports + frameworkName: robot +``` + +Image \ No newline at end of file