Skip to content

Commit

Permalink
fix(report): export all results to zip
Browse files Browse the repository at this point in the history
  • Loading branch information
Almouro committed Sep 14, 2023
1 parent f466b2f commit 88010f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-reporter-ui/ReporterView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const Report = ({
const averagedResults: AveragedTestCaseResult[] = iterationResults.map(averageTestCaseResult);

const saveResultsToZIP = () => {
exportRawDataToZIP(iterationResults);
exportRawDataToZIP(results);
};

const hasVideos = !!iterationResults.some((iteration) => iteration.iterations[0]?.videoInfos);
Expand Down

0 comments on commit 88010f9

Please sign in to comment.