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
93 changes: 93 additions & 0 deletions docs/hyperexecute-release-notes-2-8-4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
---
id: hyperexecute-release-notes-2-8-4
title: Version 2.8.4
hide_title: false
sidebar_label: Version 2.8.4
description: Version 2.8.4
keywords:
- LambdaTest Hyperexecute
- LambdaTest Hyperexecute help
- LambdaTest Hyperexecute documentation
- FAQs
url: https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-8-4/
site_name: LambdaTest
slug: hyperexecute-release-notes-2-8-4/
---

import NewReleaseTag from '../src/component/newRelease.js';
import EnhancementTag from '../src/component/enhancementTag';
import BugFixTag from '../src/component/bugFixTag';
import CodeBlock from '@theme/CodeBlock';
import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";

<script type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify({
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.lambdatest.com"
},{
"@type": "ListItem",
"position": 2,
"name": "Support",
"item": "https://www.lambdatest.com/support/docs/"
},{
"@type": "ListItem",
"position": 3,
"name": "Version",
"item": "https://www.lambdatest.com/support/docs/hyperexecute-release-notes-2-8-4/"
}]
})
}}
></script>
## 🚀 New Feature: Enhanced Left-Side Test List View for Cypress
We’re excited to announce the launch of a brand-new Left-Side Test List View in the HyperExecute Automation Dashboard, tailored specifically for Cypress test executions. This enhancement is designed to provide users with a more intuitive, informative, and actionable interface for navigating and debugging their Cypress automation builds.

### 🔍 Overview
The new left-side panel now displays a vertical list of executed Cypress spec files within each build, making it easier than ever to:

- Understand the status of individual test files at a glance.
- Navigate between test files quickly.
- Debug failed or skipped tests efficiently.
- Monitor execution time per file.
This feature significantly improves user experience by streamlining test result analysis and accelerating troubleshooting.

### ✅ Key Features Implemented
#### 1. Test File Listing
- Each Cypress spec file (e.g., actions.spec.js, tunnel.spec.js) is displayed in a clean vertical list.
- Files are grouped under their corresponding build for better context.
- Sorted by execution start time to reflect chronological order.

#### 2. Status Indicators
- Green checkmark (✔️): Test passed successfully.
- Red cross (✖️): Test failed.
- Yellow clock (⏳): Test is currently running (real-time updates).
- Grey icon (–): Test was skipped or not executed.

✅ Statuses are clearly visible and consistent across both the Build Summary page and individual Test Run pages.

#### 3. Execution Time Display
- Execution duration shown next to each test file.
- Time format adapts based on length:
- 25s (seconds)
- 2m 59s (minutes and seconds)

✅ Times like 2m 59s, 35s, and 44s are accurately rendered in UI as expected.

#### 4. Search and Filter
- A dedicated “Search Tests” bar is available at the top of the test list.
- Users can filter test files dynamically by filename for faster navigation.

### 🧪 Use Cases & Benefits
| Use Case | Benefits |
|----------|----------|
| Quickly identifying failed tests | Streamlined debugging process |
| Monitoring execution time per file | Better performance tracking |
| Searching through long test lists | Improved productivity and usability |
| Viewing real-time test statuses | Enables proactive monitoring during CI/CD |

### 📌 Accessing the Feature
This feature is enabled by default for all Cypress-based test executions on HyperExecute. Simply navigate to your Automation Dashboard , select a Cypress build, and view the enhanced left-side test list in the Build Summary or individual Test Run views.
1 change: 1 addition & 0 deletions docs/hyperexecute-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ HyperExecute is an AI Native Test Orchestration Cloud Platform, enabling test au
#### April, 2025
| Release Number | Release Date |
|----------------|--------------|
| [Version 2.8.4](/support/docs/hyperexecute-release-notes-2-8-4) | April 28, 2025|
| [Version 2.8.2](/support/docs/hyperexecute-release-notes-2-8-2) | April 21, 2025|
| [Version 2.8.1](/support/docs/hyperexecute-release-notes-2-8-1) | April 14, 2025|

Expand Down
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,7 @@ module.exports = {
collapsed: true,
label: "April, 2025",
items: [
'hyperexecute-release-notes-2-8-4',
'hyperexecute-release-notes-2-8-2',
'hyperexecute-release-notes-2-8-1',
]
Expand Down
Loading