Skip to content

Commit

Permalink
fix: backfill config
Browse files Browse the repository at this point in the history
  • Loading branch information
agoldis committed Sep 11, 2023
1 parent 6a26e40 commit ed8a777
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/cypress-cloud/lib/results/results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ export const getInstanceTestsPayload = (
config: Cypress.ResolvedConfigOptions
): SetInstanceTestsPayload => {
return {
config,
config: {
...config,
// @ts-ignore
videoUploadOnPasses: config?.videoUploadOnPasses ?? false,
},
tests:
runResult.tests?.map((test, i) => ({
title: test.title,
Expand Down

0 comments on commit ed8a777

Please sign in to comment.