Skip to content

Commit

Permalink
fix(runner): disable settings persistence temporarily and some fixes (#…
Browse files Browse the repository at this point in the history
…8018)

* fix(runner): disable settings persistence temporarily and run requests with correct order

* fix: should find the last name match in the requests

* fix: requestRow should not be an array

* feedback

* remove lodash import

---------

Co-authored-by: jackkav <jackkav@gmail.com>
  • Loading branch information
ihexxa and jackkav authored Sep 27, 2024
1 parent e1cb05d commit 6188f07
Show file tree
Hide file tree
Showing 2 changed files with 359 additions and 382 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const RequestTestResultRows: FC<RequestTestResultRowsProps> = ({
const executionTime = <span className={result.executionTime < 300 ? 'text-white-500' : 'text-red-500'} >
{result.executionTime === 0 ? '< 0.1' : `${result.executionTime.toFixed(1)}`}
</span>;
const statusTag = <div className={`text-xs rounded p-[2px] inline-block w-16 text-center font-semibold ${statusTagColor}`}>
const statusTag = <div className={`text-xs rounded p-[2px] inline-block w-16 text-center text-white font-semibold ${statusTagColor}`}>
{statusText}
</div >;
const message = <>
Expand Down
Loading

0 comments on commit 6188f07

Please sign in to comment.