Skip to content

Commit

Permalink
fix: copy ref objects
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Apr 18, 2021
1 parent caecd15 commit 48423e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/jest-extract/src/run-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ const runTestsWorker: fastq.asyncWorker<
({ leaks, memoryUsage, perfStats, testFilePath, testResults }) => ({
leaks,
memoryUsage,
perfStats,
perfStats: { ...perfStats },
testFilePath: path.relative(projectFolder, testFilePath),
testResults,
testResults: [...testResults],
}),
),
coverage: {},
Expand Down

0 comments on commit 48423e7

Please sign in to comment.