fix(editor): Adjust time format for negative numbers (no-changelog) (#16194)

This commit is contained in:
Suguru Inoue
2025-06-10 17:25:22 +02:00
committed by GitHub
parent aa407350bb
commit aa03110f2e
6 changed files with 21 additions and 7 deletions

View File

@@ -199,6 +199,6 @@ describe('GlobalExecutionsListItem', () => {
const executionTimeElement = getByTestId('execution-time');
expect(executionTimeElement).toBeVisible();
expect(executionTimeElement.textContent).toBe('30:00m');
expect(executionTimeElement.textContent).toBe('30m 0s');
});
});