Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion docs/hyperexecute-release-notes-2-7-8.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,29 @@ HyperExecute expands its support for the dotnet by introducing the versions `4.7
runtime:
- language: dotnet
version: "4.7"
```
```

## 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
```

<img loading="lazy" src={require('../assets/images/hyperexecute/release-notes/robot-report.png').default} alt="Image" className="doc_img"/>
Loading