diff --git a/packages/server/lib/modes/run.ts b/packages/server/lib/modes/run.ts index 60ee0ccf49f4..a203552770cb 100644 --- a/packages/server/lib/modes/run.ts +++ b/packages/server/lib/modes/run.ts @@ -675,10 +675,14 @@ async function waitForTestsToFinishRunning (options: { project: Project, screens project.server.reset() } + let videoCompressionFailed = false + if (videoExists && !skippedSpec && !videoCaptureFailed) { const span = telemetry.startSpan({ name: 'video:compression' }) const chaptersConfig = videoCapture.generateFfmpegChaptersConfig(results.tests) + printResults.printVideoHeader() + try { debug('compressing recording') @@ -700,13 +704,19 @@ async function waitForTestsToFinishRunning (options: { project: Project, screens }, }) } catch (err) { - videoCaptureFailed = true + videoCompressionFailed = true warnVideoCompressionFailed(err) } span?.end() } - if (videoCaptureFailed) { + // only fail to print the video if capturing the video fails. + // otherwise, print the video path to the console if it exists regardless of whether compression fails or not + if (!videoCaptureFailed && videoExists) { + printResults.printVideoPath(videoName) + } + + if (videoCaptureFailed || videoCompressionFailed) { results.video = null } diff --git a/packages/server/lib/util/print-run.ts b/packages/server/lib/util/print-run.ts index 961735ed05da..556b55128a93 100644 --- a/packages/server/lib/util/print-run.ts +++ b/packages/server/lib/util/print-run.ts @@ -477,12 +477,6 @@ function displayScreenshots (screenshots: Screenshot[] = []) { export function displayVideoCompressionProgress (opts: { videoName: string, videoCompression: number | false }) { console.log('') - terminal.header('Video', { - color: ['cyan'], - }) - - console.log('') - const table = terminal.table({ colWidths: [3, 21, 76], colAligns: ['left', 'left', 'left'], @@ -534,12 +528,6 @@ export function displayVideoCompressionProgress (opts: { videoName: string, vide ]) console.log(table.toString()) - - console.log('') - - console.log(` - Video output: ${formatPath(opts.videoName, undefined, 'cyan')}`) - - console.log('') } if (Date.now() - progress > throttle) { @@ -553,3 +541,21 @@ export function displayVideoCompressionProgress (opts: { videoName: string, vide }, } } + +export const printVideoHeader = () => { + console.log('') + + terminal.header('Video', { + color: ['cyan'], + }) +} + +export const printVideoPath = (videoName?: string) => { + if (videoName !== undefined) { + console.log('') + + console.log(` - Video output: ${formatPath(videoName, undefined, 'cyan')}`) + + console.log('') + } +} diff --git a/system-tests/__snapshots__/async_timeouts_spec.js b/system-tests/__snapshots__/async_timeouts_spec.js index ca9a4d585a87..065cb8a00e87 100644 --- a/system-tests/__snapshots__/async_timeouts_spec.js +++ b/system-tests/__snapshots__/async_timeouts_spec.js @@ -61,6 +61,11 @@ exports['e2e async timeouts / failing1'] = ` cypress command (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/async_timeouts.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/base_url_spec.js b/system-tests/__snapshots__/base_url_spec.js index 0a3cbf23227a..ac85aa72b642 100644 --- a/system-tests/__snapshots__/base_url_spec.js +++ b/system-tests/__snapshots__/base_url_spec.js @@ -39,6 +39,11 @@ exports['e2e baseUrl / https / passes'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/base_url.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -94,6 +99,11 @@ exports['e2e baseUrl / http / passes'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/base_url.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/browser_crash_handling_spec.js b/system-tests/__snapshots__/browser_crash_handling_spec.js index 16222fb3a394..dedf8453b995 100644 --- a/system-tests/__snapshots__/browser_crash_handling_spec.js +++ b/system-tests/__snapshots__/browser_crash_handling_spec.js @@ -46,6 +46,11 @@ https://on.cypress.io/renderer-process-crashed └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/chrome_tab_crash.cy.js.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: simple.cy.js (2 of 2) @@ -71,6 +76,11 @@ https://on.cypress.io/renderer-process-crashed └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/simple.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -135,6 +145,11 @@ https://on.cypress.io/renderer-process-crashed └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/chrome_tab_crash.cy.js.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: simple.cy.js (2 of 2) @@ -160,6 +175,11 @@ https://on.cypress.io/renderer-process-crashed └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/simple.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -223,6 +243,11 @@ This can happen for many different reasons: └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/chrome_process_crash.cy.js.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: simple.cy.js (2 of 2) @@ -248,6 +273,11 @@ This can happen for many different reasons: └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/simple.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/busted_support_file_spec.js b/system-tests/__snapshots__/busted_support_file_spec.js index 1e3e69f84dec..a036362edfd9 100644 --- a/system-tests/__snapshots__/busted_support_file_spec.js +++ b/system-tests/__snapshots__/busted_support_file_spec.js @@ -62,6 +62,11 @@ Fix the error in your code and re-run your tests. └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/cache_spec.js b/system-tests/__snapshots__/cache_spec.js index b513c72c6b8c..b834277f91a3 100644 --- a/system-tests/__snapshots__/cache_spec.js +++ b/system-tests/__snapshots__/cache_spec.js @@ -42,6 +42,11 @@ exports['e2e cache passes 1'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/cache.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/caught_uncaught_hook_errors_spec.js b/system-tests/__snapshots__/caught_uncaught_hook_errors_spec.js index a3e4b49baba8..876d4b2bd71d 100644 --- a/system-tests/__snapshots__/caught_uncaught_hook_errors_spec.js +++ b/system-tests/__snapshots__/caught_uncaught_hook_errors_spec.js @@ -88,6 +88,11 @@ Because this error occurred during a \`before all\` hook we are skipping the rem before all hook (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/hook_caught_error_failing.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -173,6 +178,11 @@ Because this error occurred during a \`before each\` hook we are skipping the re before each hook (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/hook_uncaught_error_failing.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -249,6 +259,11 @@ Because this error occurred during a \`before each\` hook we are skipping all of efore each hook (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/hook_uncaught_root_error_failing.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -335,6 +350,11 @@ Because this error occurred during a \`before each\` hook we are skipping the re before each hook (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/hook_uncaught_error_events_failing.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/commands_outside_of_test_spec.js b/system-tests/__snapshots__/commands_outside_of_test_spec.js index d38023cbf775..3f4640f37ac0 100644 --- a/system-tests/__snapshots__/commands_outside_of_test_spec.js +++ b/system-tests/__snapshots__/commands_outside_of_test_spec.js @@ -35,6 +35,11 @@ exports['e2e commands outside of test / passes on passing assertions'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/assertions_passing_outside_of_test.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -110,6 +115,11 @@ We dynamically generated a new test to display this failure. aught error was detected outside of a test (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/assertions_failing_outside_of_test.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -193,6 +203,11 @@ https://on.cypress.io/cannot-execute-commands-outside-test r was detected outside of a test (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/commands_outside_of_test.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/component_testing_spec.ts.js b/system-tests/__snapshots__/component_testing_spec.ts.js index 0c80c0cbcd0a..b79c7e6f457b 100644 --- a/system-tests/__snapshots__/component_testing_spec.ts.js +++ b/system-tests/__snapshots__/component_testing_spec.ts.js @@ -41,6 +41,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Unmount.cy.jsx (2 of 5) @@ -72,6 +77,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: UsingLegacyMount.cy.jsx (3 of 5) @@ -99,6 +109,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Rerendering.cy.jsx (4 of 5) @@ -126,6 +141,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: mount.cy.jsx (5 of 5) @@ -156,6 +176,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4 + + ==================================================================================================== (Run Finished) @@ -221,6 +246,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Unmount.cy.jsx (2 of 5) @@ -252,6 +282,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: UsingLegacyMount.cy.jsx (3 of 5) @@ -279,6 +314,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Rerendering.cy.jsx (4 of 5) @@ -306,6 +346,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: mount.cy.jsx (5 of 5) @@ -336,6 +381,11 @@ exports['React major versions with Webpack executes all of the tests for React v └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4 + + ==================================================================================================== (Run Finished) @@ -400,6 +450,11 @@ exports['React major versions with Vite executes all of the tests for React v17 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Unmount.cy.jsx (2 of 5) @@ -431,6 +486,11 @@ exports['React major versions with Vite executes all of the tests for React v17 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: UsingLegacyMount.cy.jsx (3 of 5) @@ -458,6 +518,11 @@ exports['React major versions with Vite executes all of the tests for React v17 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Rerendering.cy.jsx (4 of 5) @@ -485,6 +550,11 @@ exports['React major versions with Vite executes all of the tests for React v17 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: mount.cy.jsx (5 of 5) @@ -515,6 +585,11 @@ exports['React major versions with Vite executes all of the tests for React v17 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4 + + ==================================================================================================== (Run Finished) @@ -579,6 +654,11 @@ exports['React major versions with Vite executes all of the tests for React v18 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Unmount.cy.jsx (2 of 5) @@ -610,6 +690,11 @@ exports['React major versions with Vite executes all of the tests for React v18 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: UsingLegacyMount.cy.jsx (3 of 5) @@ -637,6 +722,11 @@ exports['React major versions with Vite executes all of the tests for React v18 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: Rerendering.cy.jsx (4 of 5) @@ -664,6 +754,11 @@ exports['React major versions with Vite executes all of the tests for React v18 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: mount.cy.jsx (5 of 5) @@ -694,6 +789,11 @@ exports['React major versions with Vite executes all of the tests for React v18 └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4 + + ==================================================================================================== (Run Finished) @@ -792,6 +892,11 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = ` n (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/1_fails.cy.js.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: 2_foo.cy.js (2 of 4) @@ -819,6 +924,11 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/2_foo.cy.js.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: 3_retries.cy.js (3 of 4) @@ -847,6 +957,11 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/3_retries.cy.js.mp4 + + ──────────────────────────────────────────────────────────────────────────────────────────────────── Running: 999_final.cy.js (4 of 4) @@ -872,6 +987,11 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/999_final.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/config_spec.js b/system-tests/__snapshots__/config_spec.js index 92df826942ea..cdfa98fc040f 100644 --- a/system-tests/__snapshots__/config_spec.js +++ b/system-tests/__snapshots__/config_spec.js @@ -45,6 +45,11 @@ exports['e2e config provides various environment details 1'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/config_passing.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -114,6 +119,11 @@ exports['e2e config applies defaultCommandTimeout globally 1'] = ` -- times out looking for a missing element (failed).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/dom_times_out.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -332,6 +342,11 @@ exports['e2e config setupNodeEvents modify specPattern for current testing type └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/a_record.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -430,6 +445,11 @@ exports['e2e config finds supportFiles in projects containing glob syntax 1'] = └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/controllers_spec.js b/system-tests/__snapshots__/controllers_spec.js index 24f4fae7830a..cdde209718df 100644 --- a/system-tests/__snapshots__/controllers_spec.js +++ b/system-tests/__snapshots__/controllers_spec.js @@ -46,6 +46,11 @@ Fix the error in your code and re-run your tests. └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/spec.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -99,6 +104,11 @@ exports['e2e plugins handles specs with $, &, and + in file name 1'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/s%p+ec&.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/cookies_spec.ts.js b/system-tests/__snapshots__/cookies_spec.ts.js index 21d8749b4e91..063b29d41c45 100644 --- a/system-tests/__snapshots__/cookies_spec.ts.js +++ b/system-tests/__snapshots__/cookies_spec.ts.js @@ -76,6 +76,11 @@ exports['e2e cookies with baseurl'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/cookies_spec_baseurl.cy.js.mp4 + + ==================================================================================================== (Run Finished) @@ -135,6 +140,11 @@ exports['e2e cookies with no baseurl'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/cookies_spec_no_baseurl.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/cy_origin_retries_spec.ts.js b/system-tests/__snapshots__/cy_origin_retries_spec.ts.js index 8534fbfd4eed..b0083580f0ae 100644 --- a/system-tests/__snapshots__/cy_origin_retries_spec.ts.js +++ b/system-tests/__snapshots__/cy_origin_retries_spec.ts.js @@ -62,6 +62,11 @@ exports['e2e cy.origin retries / Appropriately displays test retry errors withou errors (failed) (attempt 3).png + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/cy_origin_retries.cy.ts.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/es_modules_spec.js b/system-tests/__snapshots__/es_modules_spec.js index fdadc20892d3..f09f49d532a5 100644 --- a/system-tests/__snapshots__/es_modules_spec.js +++ b/system-tests/__snapshots__/es_modules_spec.js @@ -41,6 +41,11 @@ exports['e2e es modules passes 1'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/es_modules_in_coffee_spec.coffee.mp4 + + ==================================================================================================== (Run Finished) @@ -112,6 +117,11 @@ Fix the error in your code and re-run your tests. └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/es_module_import_failing.cy.js.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/experimental_skip_domain_injection_spec.ts.js b/system-tests/__snapshots__/experimental_skip_domain_injection_spec.ts.js index e44294aa44d7..f0bc997809af 100644 --- a/system-tests/__snapshots__/experimental_skip_domain_injection_spec.ts.js +++ b/system-tests/__snapshots__/experimental_skip_domain_injection_spec.ts.js @@ -42,6 +42,11 @@ exports['e2e experimentalSkipDomainInjection=true / passes'] = ` └────────────────────────────────────────────────────────────────────────────────────────────────┘ + (Video) + + - Video output: /XXX/XXX/XXX/cypress/videos/experimental_skip_domain_injection.cy.ts.mp4 + + ==================================================================================================== (Run Finished) diff --git a/system-tests/__snapshots__/form_submissions_spec.js b/system-tests/__snapshots__/form_submissions_spec.js index 969fc4e510fc..f1e5122df63a 100644 --- a/system-tests/__snapshots__/form_submissions_spec.js +++ b/system-tests/__snapshots__/form_submissions_spec.js @@ -46,6 +46,11 @@ exports['e2e forms /