breaking: default video configuration option to false (#27008)

* chore: update darwin v8 snapshot

* BREAKING CHANGE: set video to false by default (system tests need updating).

* Update cli/CHANGELOG.md

Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>

* chore: update type comments

* chore: update protocol snapshot

* run ci

* run ci

* set video to true for chrome browser crash test

* chore: put in workaround for failing system test spec to be fixed in 27062

* chore: allow retries on actionability tests to be at least one retry as the CI tests run faster without video on

* chore: fix flaky navigation test where done is called multiple times almsot always, but sometimes throws an error

---------

Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>
This commit is contained in:
Bill Glesias
2023-06-20 13:21:39 -04:00
committed by GitHub
parent 5f93282658
commit 9580dc2e35
125 changed files with 271 additions and 1533 deletions
-1
View File
@@ -2070,7 +2070,6 @@ jobs:
CYPRESS_PROJECT_ID=$TEST_KITCHENSINK_PROJECT_ID \
CYPRESS_RECORD_KEY=$TEST_KITCHENSINK_RECORD_KEY \
CYPRESS_INTERNAL_ENV=staging \
CYPRESS_video=false \
yarn cypress:run --project /tmp/cypress-example-kitchensink --record
- store-npm-logs
+1
View File
@@ -6,6 +6,7 @@ _Released 08/1/2023 (PENDING)_
**Breaking Changes:**
- The [`cy.readFile()`](/api/commands/readfile) command is now retry-able as a [query command](https://on.cypress.io/retry-ability). This should not affect any tests using it; the functionality is unchanged. However, it can no longer be overwritten using [`Cypress.Commands.overwrite()`](/api/cypress-api/custom-commands#Overwrite-Existing-Commands). Addressed in [#25595](https://github.com/cypress-io/cypress/pull/25595).
- The [`video`](https://docs.cypress.io/guides/references/configuration#Videos) configuration option now defaults to `false`. Addresses [#26157](https://github.com/cypress-io/cypress/issues/26157).
- The deprecated configuration option, `nodeVersion` has been removed. Addresses [#27016](https://github.com/cypress-io/cypress/issues/27016).
+2 -2
View File
@@ -3007,8 +3007,8 @@ declare namespace Cypress {
*/
videoCompression: number | boolean
/**
* Whether Cypress will record a video of the test run when running headlessly.
* @default true
* Whether Cypress will record a video of the test run when executing in run mode.
* @default false
*/
video: boolean
/**
-1
View File
@@ -11,5 +11,4 @@ module.exports = defineConfig({
specPattern: '**/spec.js',
},
fixturesFolder: false,
video: false,
})
-1
View File
@@ -1,7 +1,6 @@
module.exports = {
'viewportWidth': 400,
'viewportHeight': 400,
'video': false,
'projectId': 'z9dxah',
'env': {
'reactDevtools': true,
-1
View File
@@ -3,7 +3,6 @@ import { defineConfig } from 'cypress'
export default defineConfig({
'viewportWidth': 500,
'viewportHeight': 500,
'video': false,
'responseTimeout': 2500,
'projectId': '134ej7',
'experimentalFetchPolyfill': true,
@@ -91,9 +91,6 @@ exports.runTest = async (options = {}) => {
spec: opts.spec,
browser: opts.browser,
exit: opts.exit,
config: {
video: false,
},
dev: true,
})
.finally(() => {
@@ -294,7 +294,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
@@ -270,7 +270,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
@@ -655,7 +655,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
@@ -294,7 +294,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
@@ -270,7 +270,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
@@ -1656,7 +1656,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
@@ -74,7 +74,7 @@ exports['config/src/index .getDefaultValues returns list of public config keys 1
'testIsolation': true,
'trashAssetsBeforeRuns': true,
'userAgent': null,
'video': true,
'video': false,
'videoCompression': 32,
'videosFolder': 'cypress/videos',
'videoUploadOnPasses': true,
@@ -162,7 +162,7 @@ exports['config/src/index .getDefaultValues returns list of public config keys f
'testIsolation': true,
'trashAssetsBeforeRuns': true,
'userAgent': null,
'video': true,
'video': false,
'videoCompression': 32,
'videosFolder': 'cypress/videos',
'videoUploadOnPasses': true,
+1 -1
View File
@@ -418,7 +418,7 @@ const driverConfigOptions: Array<DriverConfigOption> = [
requireRestartOnChange: 'browser',
}, {
name: 'video',
defaultValue: true,
defaultValue: false,
validation: validate.isBoolean,
}, {
name: 'videoCompression',
+4 -4
View File
@@ -762,8 +762,8 @@ describe('config/src/project/utils', () => {
return this.defaults('animationDistanceThreshold', 5)
})
it('video=true', function () {
return this.defaults('video', true)
it('video=false', function () {
return this.defaults('video', false)
})
it('videoCompression=32', function () {
@@ -1076,7 +1076,7 @@ describe('config/src/project/utils', () => {
testIsolation: { value: true, from: 'default' },
trashAssetsBeforeRuns: { value: true, from: 'default' },
userAgent: { value: null, from: 'default' },
video: { value: true, from: 'default' },
video: { value: false, from: 'default' },
videoCompression: { value: 32, from: 'default' },
videosFolder: { value: 'cypress/videos', from: 'default' },
videoUploadOnPasses: { value: true, from: 'default' },
@@ -1194,7 +1194,7 @@ describe('config/src/project/utils', () => {
testIsolation: { value: true, from: 'default' },
trashAssetsBeforeRuns: { value: true, from: 'default' },
userAgent: { value: null, from: 'default' },
video: { value: true, from: 'default' },
video: { value: false, from: 'default' },
videoCompression: { value: 32, from: 'default' },
videosFolder: { value: 'cypress/videos', from: 'default' },
videoUploadOnPasses: { value: true, from: 'default' },
@@ -241,7 +241,7 @@ const resolvedOptions: Array<ResolvedConfigOption> = [
canUpdateDuringTestTime: false,
}, {
name: 'video',
defaultValue: true,
defaultValue: false,
canUpdateDuringTestTime: false,
}, {
name: 'videoCompression',
@@ -1618,7 +1618,7 @@ describe('src/cy/commands/actions/click', () => {
it('waits until element stops animating', () => {
cy.get('button:first').then(($btn) => $btn.animate({ width: '30em' }, 100)).click().then(() => {
expect(retries).to.gt(1)
expect(retries).to.gte(1)
})
})
@@ -563,7 +563,7 @@ describe('src/cy/commands/actions/trigger', () => {
it('waits until element stops animating', () => {
cy.get('button:first').then(($btn) => $btn.animate({ width: '30em' }, 100)).trigger('mouseover').then(() => {
expect(retries).to.be.gt(1)
expect(retries).to.be.gte(1)
})
})
@@ -325,7 +325,7 @@ describe('src/cy/commands/actions/type - #type', () => {
it('waits until element stops animating', () => {
cy.get('button:first').then(($btn) => $btn.animate({ width: '30em' }, 100)).type('foo').then(() => {
expect(retries).to.be.gt(1)
expect(retries).to.be.gte(1)
})
})
@@ -764,9 +764,14 @@ describe('src/cy/commands/navigation', () => {
// https://github.com/cypress-io/cypress/issues/14445
// FIXME: fix flaky test (webkit): https://github.com/cypress-io/cypress/issues/24600
it('should eventually fail on assertion despite redirects', { browser: '!webkit' }, (done) => {
let hasDoneBeenCalled = false
cy.on('fail', (err) => {
expect(err.message).to.contain('The application redirected to')
done()
if (!hasDoneBeenCalled) {
hasDoneBeenCalled = true
done()
}
})
// One time, set the amount of times we want the page to perform it's redirect loop.
@@ -228,7 +228,7 @@
"field": "userAgent"
},
{
"value": true,
"value": false,
"from": "default",
"field": "video"
},
+3 -2
View File
@@ -668,7 +668,7 @@ async function waitForTestsToFinishRunning (options: { project: Project, screens
if (!shouldUploadVideo) {
debug(`Spec run had no failures and config.videoUploadOnPasses=false. Skip compressing video. Video path: ${videoName}`)
results.video = null
results.videoCompression = false
}
if (!quiet && !skippedSpec) {
@@ -734,7 +734,8 @@ async function waitForTestsToFinishRunning (options: { project: Project, screens
printResults.printVideoPath(videoName)
}
if (videoCaptureFailed || videoCompressionFailed) {
// if capture or compressing has failed, or the test passed and videoUploadOnPasses=false
if (videoCaptureFailed || videoCompressionFailed || !shouldUploadVideo) {
results.video = null
}
@@ -1045,7 +1045,7 @@ describe('lib/cypress', () => {
expect(chromeBrowser._navigateUsingCRI).to.have.been.calledOnce
expect(chromeBrowser._setAutomation).to.have.been.calledOnce
expect(chromeBrowser._recordVideo).to.have.been.calledOnce
expect(chromeBrowser._recordVideo).not.to.have.been.called
expect(BrowserCriClient.create).to.have.been.calledOnce
expect(browserCriClient.attachToTargetUrl).to.have.been.calledOnce
@@ -47,7 +47,7 @@ exports['e2e async timeouts / failing1'] = `
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: async_timeouts.cy.js
@@ -61,11 +61,6 @@ exports['e2e async timeouts / failing1'] = `
cypress command (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/async_timeouts.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -33,17 +33,12 @@ exports['e2e baseUrl / https / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: base_url.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/base_url.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -93,17 +88,12 @@ exports['e2e baseUrl / http / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: base_url.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/base_url.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -40,17 +40,12 @@ https://on.cypress.io/renderer-process-crashed
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: chrome_tab_crash.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/chrome_tab_crash.cy.js.mp4
Running: simple.cy.js (2 of 2)
@@ -70,17 +65,12 @@ https://on.cypress.io/renderer-process-crashed
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -139,17 +129,12 @@ https://on.cypress.io/renderer-process-crashed
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: chrome_tab_crash.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/chrome_tab_crash.cy.js.mp4
Running: simple.cy.js (2 of 2)
@@ -169,17 +154,12 @@ https://on.cypress.io/renderer-process-crashed
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -56,17 +56,12 @@ Fix the error in your code and re-run your tests.
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -36,17 +36,12 @@ exports['e2e cache passes 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: cache.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/cache.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -72,7 +72,7 @@ Because this error occurred during a \`before all\` hook we are skipping the rem
Pending: 0
Skipped: 3
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: hook_caught_error_failing.cy.js
@@ -88,11 +88,6 @@ 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)
@@ -166,7 +161,7 @@ Because this error occurred during a \`before each\` hook we are skipping the re
Pending: 0
Skipped: 2
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: hook_uncaught_error_failing.cy.js
@@ -178,11 +173,6 @@ 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)
@@ -247,7 +237,7 @@ Because this error occurred during a \`before each\` hook we are skipping all of
Pending: 0
Skipped: 3
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: hook_uncaught_root_error_failing.cy.js
@@ -259,11 +249,6 @@ 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)
@@ -337,7 +322,7 @@ Because this error occurred during a \`before each\` hook we are skipping the re
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: hook_uncaught_error_events_failing.cy.js
@@ -350,11 +335,6 @@ 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)
@@ -29,17 +29,12 @@ exports['e2e commands outside of test / passes on passing assertions'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: assertions_passing_outside_of_test.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/assertions_passing_outside_of_test.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -103,7 +98,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: assertions_failing_outside_of_test.cy.js
@@ -115,11 +110,6 @@ 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)
@@ -191,7 +181,7 @@ https://on.cypress.io/cannot-execute-commands-outside-test
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: commands_outside_of_test.cy.js
@@ -203,11 +193,6 @@ 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)
@@ -35,17 +35,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: Unmount.cy.jsx (2 of 5)
@@ -71,17 +66,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: UsingLegacyMount.cy.jsx (3 of 5)
@@ -103,17 +93,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: UsingLegacyMount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4
Running: Rerendering.cy.jsx (4 of 5)
@@ -135,17 +120,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: mount.cy.jsx (5 of 5)
@@ -170,17 +150,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -240,17 +215,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: Unmount.cy.jsx (2 of 5)
@@ -276,17 +246,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: UsingLegacyMount.cy.jsx (3 of 5)
@@ -308,17 +273,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: UsingLegacyMount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4
Running: Rerendering.cy.jsx (4 of 5)
@@ -340,17 +300,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: mount.cy.jsx (5 of 5)
@@ -375,17 +330,12 @@ exports['React major versions with Webpack executes all of the tests for React v
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -444,17 +394,12 @@ exports['React major versions with Vite executes all of the tests for React v17
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: Unmount.cy.jsx (2 of 5)
@@ -480,17 +425,12 @@ exports['React major versions with Vite executes all of the tests for React v17
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: UsingLegacyMount.cy.jsx (3 of 5)
@@ -512,17 +452,12 @@ exports['React major versions with Vite executes all of the tests for React v17
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: UsingLegacyMount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4
Running: Rerendering.cy.jsx (4 of 5)
@@ -544,17 +479,12 @@ exports['React major versions with Vite executes all of the tests for React v17
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: mount.cy.jsx (5 of 5)
@@ -579,17 +509,12 @@ exports['React major versions with Vite executes all of the tests for React v17
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -648,17 +573,12 @@ exports['React major versions with Vite executes all of the tests for React v18
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: Unmount.cy.jsx (2 of 5)
@@ -684,17 +604,12 @@ exports['React major versions with Vite executes all of the tests for React v18
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: UsingLegacyMount.cy.jsx (3 of 5)
@@ -716,17 +631,12 @@ exports['React major versions with Vite executes all of the tests for React v18
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: UsingLegacyMount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/UsingLegacyMount.cy.jsx.mp4
Running: Rerendering.cy.jsx (4 of 5)
@@ -748,17 +658,12 @@ exports['React major versions with Vite executes all of the tests for React v18
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: mount.cy.jsx (5 of 5)
@@ -783,17 +688,12 @@ exports['React major versions with Vite executes all of the tests for React v18
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -878,7 +778,7 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = `
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: 1_fails.cy.js
@@ -892,11 +792,6 @@ 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)
@@ -918,17 +813,12 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: 2_foo.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/2_foo.cy.js.mp4
Running: 3_retries.cy.js (3 of 4)
@@ -951,17 +841,12 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: 3_retries.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/3_retries.cy.js.mp4
Running: 999_final.cy.js (4 of 4)
@@ -981,17 +866,12 @@ exports['experimentalSingleTabRunMode / executes all specs in a single tab'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: 999_final.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/999_final.cy.js.mp4
====================================================================================================
(Run Finished)
+4 -24
View File
@@ -39,17 +39,12 @@ exports['e2e config provides various environment details 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: config_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/config_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -107,7 +102,7 @@ exports['e2e config applies defaultCommandTimeout globally 1'] = `
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: dom_times_out.cy.js
@@ -119,11 +114,6 @@ 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)
@@ -336,17 +326,12 @@ exports['e2e config setupNodeEvents modify specPattern for current testing type
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: a_record.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/a_record.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -439,17 +424,12 @@ exports['e2e config finds supportFiles in projects containing glob syntax 1'] =
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -40,17 +40,12 @@ Fix the error in your code and re-run your tests.
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: spec.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/spec.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -98,17 +93,12 @@ exports['e2e plugins handles specs with $, &, and + in file name 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: s%p+ec&.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/s%p+ec&.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -70,17 +70,12 @@ exports['e2e cookies with baseurl'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: cookies_spec_baseurl.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/cookies_spec_baseurl.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -134,17 +129,12 @@ exports['e2e cookies with no baseurl'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: cookies_spec_no_baseurl.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/cookies_spec_no_baseurl.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -43,7 +43,7 @@ exports['e2e cy.origin retries / Appropriately displays test retry errors withou
Pending: 0
Skipped: 0
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: cy_origin_retries.cy.ts
@@ -62,11 +62,6 @@ 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)
+2 -12
View File
@@ -35,17 +35,12 @@ exports['e2e es modules passes 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: es_modules_in_coffee_spec.coffee
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/es_modules_in_coffee_spec.coffee.mp4
====================================================================================================
(Run Finished)
@@ -111,17 +106,12 @@ Fix the error in your code and re-run your tests.
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: es_module_import_failing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/es_module_import_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -36,17 +36,12 @@ exports['e2e experimentalSkipDomainInjection=true / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: experimental_skip_domain_injection.cy.ts
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/experimental_skip_domain_injection.cy.ts.mp4
====================================================================================================
(Run Finished)
@@ -40,17 +40,12 @@ exports['e2e forms / <form> submissions / passes with https on localhost'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: form_submission_multipart.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/form_submission_multipart.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -107,17 +102,12 @@ exports['e2e forms / <form> submissions / passes with http on localhost'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: form_submission_multipart.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/form_submission_multipart.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -175,7 +165,7 @@ exports['e2e forms / submissions with jquery XHR POST / failing'] = `
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: form_submission_failing.cy.js
@@ -188,11 +178,6 @@ exports['e2e forms / submissions with jquery XHR POST / failing'] = `
led).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/form_submission_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -241,17 +226,12 @@ exports['e2e forms / submissions with jquery XHR POST / passing'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: form_submission_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/form_submission_passing.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -34,17 +34,12 @@ exports['e2e go / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: go.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/go.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -92,17 +92,12 @@ exports['e2e headless / tests in headed mode pass in !electron'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: headless.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/headless.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -154,17 +149,12 @@ exports['e2e headless / tests in headed mode pass in electron'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: headless.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/headless.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -39,17 +39,12 @@ exports['e2e iframes / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: iframe.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/iframe.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -34,17 +34,12 @@ exports['e2e images / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: images.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/images.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -52,17 +52,12 @@ exports['e2e interception spec character encodings does not mangle non-UTF-8 tex
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: character_encoding.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/character_encoding.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -39,7 +39,7 @@ exports['e2e issue 149 failing 1'] = `
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_149.cy.js
@@ -50,11 +50,6 @@ exports['e2e issue 149 failing 1'] = `
- /XXX/XXX/XXX/cypress/screenshots/issue_149.cy.js/fails (failed).png (1280x720)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_149.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -43,7 +43,7 @@ Because this error occurred during a \`before each\` hook we are skipping the re
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_1669.cy.js
@@ -56,11 +56,6 @@ Because this error occurred during a \`before each\` hook we are skipping the re
h hook (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_1669.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -39,7 +39,7 @@ exports['e2e issue 173 / failing'] = `
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_173.cy.js
@@ -50,11 +50,6 @@ exports['e2e issue 173 / failing'] = `
- /XXX/XXX/XXX/cypress/screenshots/issue_173.cy.js/fails (failed).png (1280x720)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_173.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -31,17 +31,12 @@ exports['e2e issue 2891 passes 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: default_layout.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/default_layout.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -33,17 +33,12 @@ exports['e2e issue 5475 history pushState hangs / fails when remote debugging po
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_5475_spec_1.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_5475_spec_1.js.mp4
Running: issue_5475_spec_2.js (2 of 2)
@@ -73,7 +68,7 @@ exports['e2e issue 5475 history pushState hangs / fails when remote debugging po
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_5475_spec_2.js
@@ -86,11 +81,6 @@ exports['e2e issue 5475 history pushState hangs / fails when remote debugging po
xt spec after modifying history.pushState (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_5475_spec_2.js.mp4
====================================================================================================
(Run Finished)
@@ -43,17 +43,12 @@ https://on.cypress.io/config
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_6407_spec.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_6407_spec.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -47,7 +47,7 @@ exports['e2e issue 674 / fails'] = `
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_674.cy.js
@@ -61,11 +61,6 @@ exports['e2e issue 674 / fails'] = `
both beforeEach and afterEach fail -- after each hook (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_674.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -53,17 +53,12 @@ exports['e2e network error handling Cypress does not connect to the upstream pro
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: https_passthru.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/https_passthru.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -113,17 +108,12 @@ exports['e2e network error handling Cypress does not delay a 304 Not Modified in
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: network_error_304_handling.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/network_error_304_handling.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -173,17 +163,12 @@ exports['e2e network error handling Cypress does not delay a 304 Not Modified be
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: network_error_304_handling.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/network_error_304_handling.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -233,17 +218,12 @@ exports['e2e network error handling Cypress does not delay a 304 Not Modified be
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: network_error_304_handling.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/network_error_304_handling.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -366,7 +346,7 @@ https://on.cypress.io/request
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: network_error_handling.cy.js
@@ -380,11 +360,6 @@ https://on.cypress.io/request
ling -- cy.request() retries -- fails after retrying 5x (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/network_error_handling.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -31,17 +31,12 @@ exports['e2e new project passes 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -33,17 +33,12 @@ exports['e2e only spec failing 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: only.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/only.cy.js.mp4
Running: only_multiple.cy.js (2 of 2)
@@ -67,17 +62,12 @@ exports['e2e only spec failing 1'] = `
Pending: 1
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: only_multiple.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/only_multiple.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -35,17 +35,12 @@ exports['e2e page_loading / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: page_loading.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/page_loading.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -91,17 +91,12 @@ exports['cy.pause() in run mode / does not pause without --headed and --no-exit'
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: pause.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/pause.cy.js.mp4
====================================================================================================
(Run Finished)
+4 -24
View File
@@ -51,17 +51,12 @@ exports['e2e plugins / works with user extensions'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -267,7 +262,7 @@ exports['e2e plugins calls after:screenshot for cy.screenshot() and failure scre
Pending: 0
Skipped: 0
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: after_screenshot.cy.js
@@ -280,11 +275,6 @@ exports['e2e plugins calls after:screenshot for cy.screenshot() and failure scre
- /XXX/XXX/XXX/cypress/screenshots/after_screenshot.cy.js/invalid-return.png (YxX)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/after_screenshot.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -334,7 +324,7 @@ exports['e2e plugins does not report more screenshots than exist if user overwri
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: after_screenshot_overwrite.cy.js
@@ -345,11 +335,6 @@ exports['e2e plugins does not report more screenshots than exist if user overwri
- /XXX/XXX/XXX/screenshot-replacement.png (2x2)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/after_screenshot_overwrite.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -510,17 +495,12 @@ exports['e2e plugins preprocessor passes with working preprocessor 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -43,7 +43,7 @@ exports['e2e promises / failing1'] = `
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: promises.cy.js
@@ -57,11 +57,6 @@ exports['e2e promises / failing1'] = `
done with err even when async (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/promises.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -97
View File
@@ -160,7 +160,7 @@ plugin stdout
Pending: 1
Skipped: 0
Screenshots: 1
Video: false
Video: true
Duration: X seconds
Estimated: X second(s)
Spec Ran: record_pass.cy.js
@@ -334,11 +334,6 @@ exports['e2e record api interaction errors update instance stdout warns but proc
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -553,11 +548,6 @@ This error will not affect or change the exit code.
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -694,11 +684,6 @@ exports['e2e record api interaction errors update instance 500 does not proceed
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
We encountered an unexpected error communicating with our servers.
@@ -788,11 +773,6 @@ We will retry 3 more times in X second(s)...
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -871,11 +851,6 @@ This error will not affect or change the exit code.
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -998,11 +973,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1083,11 +1053,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1173,11 +1138,6 @@ Details:
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1514,11 +1474,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1601,11 +1556,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1686,11 +1636,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1771,11 +1716,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -1856,11 +1796,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -2055,11 +1990,6 @@ exports['e2e record api interaction errors postInstanceResults errors and exits
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
We encountered an unexpected error communicating with our servers.
@@ -2267,11 +2197,6 @@ exports['e2e record empty specs succeeds when empty spec file 1'] = `
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/empty_suite.cy.js.mp4
(Uploading Screenshots & Videos)
- Nothing to Upload
@@ -2301,11 +2226,6 @@ exports['e2e record empty specs succeeds when empty spec file 1'] = `
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/empty.cy.js.mp4
(Uploading Screenshots & Videos)
- Nothing to Upload
@@ -2343,11 +2263,6 @@ exports['e2e record quiet mode respects quiet mode 1'] = `
1 pending
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
`
exports['e2e record api interaction errors create run 412 errors and exits when request schema is invalid 1'] = `
@@ -2490,7 +2405,7 @@ plugin stdout
Pending: 1
Skipped: 0
Screenshots: 1
Video: false
Video: true
Duration: X seconds
Estimated: X second(s)
Spec Ran: record_pass.cy.js
@@ -2792,11 +2707,6 @@ https://on.cypress.io/dashboard/organizations/org-id-1234/billing
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
@@ -2933,11 +2843,6 @@ exports['e2e record capture-protocol passing retrieves the capture protocol 1']
- /XXX/XXX/XXX/cypress/screenshots/record_pass.cy.js/yay it passes.png (400x1022)
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/record_pass.cy.js.mp4
(Uploading Screenshots & Videos)
- Done Uploading (1/1) /foo/bar/.projects/e2e/cypress/screenshots/record_pass.cy.js/yay it passes.png
+13 -78
View File
@@ -41,17 +41,12 @@ exports['e2e reporters supports junit reporter and reporter options 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_passing.cy.js.mp4
Running: simple_failing.cy.js (2 of 2)
@@ -65,7 +60,7 @@ exports['e2e reporters supports junit reporter and reporter options 1'] = `
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_failing.cy.js
@@ -79,11 +74,6 @@ exports['e2e reporters supports junit reporter and reporter options 1'] = `
ls2 (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -129,17 +119,12 @@ finished!
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -195,17 +180,12 @@ exports['e2e reporters mochawesome passes with mochawesome-1.5.2 npm custom repo
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -297,7 +277,7 @@ Because this error occurred during a \`after all\` hook we are skipping the rema
Pending: 1
Skipped: 1
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_failing_hook.cy.js
@@ -313,11 +293,6 @@ Because this error occurred during a \`after all\` hook we are skipping the rema
pec -- after hooks -- fails on this -- after all hook (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_failing_hook.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -371,17 +346,12 @@ exports['e2e reporters mochawesome passes with mochawesome-2.3.1 npm custom repo
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -471,7 +441,7 @@ Because this error occurred during a \`after all\` hook we are skipping the rema
Pending: 1
Skipped: 1
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_failing_hook.cy.js
@@ -487,11 +457,6 @@ Because this error occurred during a \`after all\` hook we are skipping the rema
pec -- after hooks -- fails on this -- after all hook (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_failing_hook.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -545,17 +510,12 @@ exports['e2e reporters mochawesome passes with mochawesome-3.0.1 npm custom repo
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -645,7 +605,7 @@ Because this error occurred during a \`after all\` hook we are skipping the rema
Pending: 1
Skipped: 1
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_failing_hook.cy.js
@@ -661,11 +621,6 @@ Because this error occurred during a \`after all\` hook we are skipping the rema
pec -- after hooks -- fails on this -- after all hook (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_failing_hook.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -727,17 +682,12 @@ exports['e2e reporters supports teamcity reporter and reporter options 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -794,17 +744,12 @@ exports['e2e reporters mochawesome pending with mochawesome-1.5.2 npm custom rep
Pending: 1
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_pending.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_pending.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -859,17 +804,12 @@ exports['e2e reporters mochawesome pending with mochawesome-2.3.1 npm custom rep
Pending: 1
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_pending.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_pending.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -924,17 +864,12 @@ exports['e2e reporters mochawesome pending with mochawesome-3.0.1 npm custom rep
Pending: 1
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: simple_pending.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/simple_pending.cy.js.mp4
====================================================================================================
(Run Finished)
+4 -24
View File
@@ -46,17 +46,12 @@ exports['e2e requests / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: request.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/request.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -143,7 +138,7 @@ https://on.cypress.io/request
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: request_http_network_error_failing.cy.js
@@ -155,11 +150,6 @@ https://on.cypress.io/request
etwork connection cannot be established -- fails (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/request_http_network_error_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -260,7 +250,7 @@ https://on.cypress.io/request
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: request_status_code_failing.cy.js
@@ -272,11 +262,6 @@ https://on.cypress.io/request
ode isnt 2xx or 3xx -- fails (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/request_status_code_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -385,7 +370,7 @@ https://on.cypress.io/request
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: request_long_http_props_failing.cy.js
@@ -397,11 +382,6 @@ https://on.cypress.io/request
us code isnt 2xx or 3xx -- fails (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/request_long_http_props_failing.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -33,7 +33,7 @@ exports['retries / supports retries'] = `
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: fail-twice.cy.js
@@ -46,11 +46,6 @@ exports['retries / supports retries'] = `
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/fail-twice.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -106,17 +101,12 @@ https://on.cypress.io/test-retries
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: main.spec.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/main.spec.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -80,7 +80,7 @@ Error: Resolution method is overspecified. Specify a callback *or* return a Prom
Pending: 0
Skipped: 0
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: return_value.cy.js
@@ -96,11 +96,6 @@ Error: Resolution method is overspecified. Specify a callback *or* return a Prom
mands, invoking done callback, and returning a promise (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/return_value.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -43,17 +43,12 @@ exports['e2e runnable execution / runnables run correct number of times with nav
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: runnable-run-count.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/runnable-run-count.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -183,17 +178,12 @@ exports['e2e runnable execution / can navigate in before hook and test'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: beforehook-and-test-navigation.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/beforehook-and-test-navigation.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -31,7 +31,7 @@ exports['e2e screenshot element capture / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 11
Video: true
Video: false
Duration: X seconds
Spec Ran: screenshot_element_capture.cy.js
@@ -63,11 +63,6 @@ exports['e2e screenshot element capture / passes'] = `
e (9).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/screenshot_element_capture.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -31,7 +31,7 @@ exports['e2e screenshot fullPage capture / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 11
Video: true
Video: false
Duration: X seconds
Spec Ran: screenshot_fullpage_capture.cy.js
@@ -63,11 +63,6 @@ exports['e2e screenshot fullPage capture / passes'] = `
are (9).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/screenshot_fullpage_capture.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -31,7 +31,7 @@ exports['e2e screenshot in nested spec / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: screenshot_nested_file.cy.js
@@ -43,11 +43,6 @@ exports['e2e screenshot in nested spec / passes'] = `
ed on spec path.png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/screenshot_nested_file.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -32,7 +32,7 @@ exports['e2e screenshot viewport capture / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 27
Video: true
Video: false
Duration: X seconds
Spec Ran: screenshot_viewport_capture.cy.js
@@ -96,11 +96,6 @@ exports['e2e screenshot viewport capture / passes'] = `
ks out absolute elements within a relative container.png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/screenshot_viewport_capture.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -110,7 +110,7 @@ Because this error occurred during a \`after each\` hook we are skipping the rem
Pending: 1
Skipped: 0
Screenshots: 34
Video: true
Video: false
Duration: X seconds
Spec Ran: screenshots.cy.js
@@ -170,11 +170,6 @@ Because this error occurred during a \`after each\` hook we are skipping the rem
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/screenshots.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -34,17 +34,12 @@ exports['e2e server sent events / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: server_sent_events.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/server_sent_events.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -67,17 +67,12 @@ exports['e2e specs handles glob characters in the working directory and spec pat
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.js.mp4
====================================================================================================
(Run Finished)
+8 -53
View File
@@ -81,7 +81,7 @@ The internal Cypress web server responded with:
Pending: 0
Skipped: 0
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: stdout_failing.cy.js
@@ -97,11 +97,6 @@ The internal Cypress web server responded with:
sing hook -- is failing (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -166,17 +161,12 @@ Fix the error in your code and re-run your tests.
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: stdout_exit_early_failing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_exit_early_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -237,17 +227,12 @@ exports['e2e stdout does not duplicate suites or tests between visits 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: stdout_passing.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_passing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -298,17 +283,12 @@ exports['e2e stdout displays fullname of nested specfile 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: spec.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/spec.cy.js.mp4
Running: stdout_specfile.cy.js (2 of 4)
@@ -330,17 +310,12 @@ exports['e2e stdout displays fullname of nested specfile 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: stdout_specfile.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_specfile.cy.js.mp4
Running: stdout_specfile_display_spec_with_a_really_long_name_that_never_has_ (3 of 4)
@@ -363,7 +338,7 @@ exports['e2e stdout displays fullname of nested specfile 1'] = `
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: stdout_specfile_display_spec_with_a_really_long_name_that_never_has_a_line_break
_or_new_line.cy.js
@@ -377,11 +352,6 @@ exports['e2e stdout displays fullname of nested specfile 1'] = `
-- passes.png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_specfile_display_spec_with_a_really_long_name_that_never_has_a_line_break_or_new_line.cy.js.mp4
Running: nested-4/spec.cy.js (4 of 4)
@@ -403,17 +373,12 @@ exports['e2e stdout displays fullname of nested specfile 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: nested-4/spec.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/nested-4/spec.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -509,7 +474,7 @@ exports['e2e stdout / displays assertion errors'] = `
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: stdout_assertion_errors.cy.js
@@ -527,11 +492,6 @@ exports['e2e stdout / displays assertion errors'] = `
-- fails with dom assertion without diff, with retries (failed) (1).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_assertion_errors.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -567,9 +527,4 @@ exports['e2e stdout respects quiet mode 1'] = `
8 passing
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/stdout_passing.cy.js.mp4
`
@@ -32,17 +32,12 @@ exports['e2e system node uses default node when launching plugins file 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: default.spec.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/default.spec.js.mp4
====================================================================================================
(Run Finished)
@@ -45,7 +45,7 @@ https://on.cypress.io/api/task
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: task_not_registered.cy.js
@@ -57,11 +57,6 @@ https://on.cypress.io/api/task
k event is not registered in setupNodeEvents method (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/task_not_registered.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -36,17 +36,12 @@ Only the last attempt will be registered.
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: multiple_task_registrations.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/multiple_task_registrations.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -125,7 +120,7 @@ https://on.cypress.io/api/task
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: task.cy.js
@@ -139,11 +134,6 @@ https://on.cypress.io/api/task
d).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/task.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -120,7 +120,7 @@ exports['testConfigOverrides / fails when setting invalid config opt with Cypres
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: invalid_before_test_event.js
@@ -134,11 +134,6 @@ exports['testConfigOverrides / fails when setting invalid config opt with Cypres
run 2 (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/invalid_before_test_event.js.mp4
====================================================================================================
(Run Finished)
@@ -201,7 +196,7 @@ exports['testConfigOverrides / fails when setting invalid config opt with Cypres
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: invalid_before_test_async_event.js
@@ -215,11 +210,6 @@ exports['testConfigOverrides / fails when setting invalid config opt with Cypres
es not run 2 (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/invalid_before_test_async_event.js.mp4
====================================================================================================
(Run Finished)
@@ -818,17 +808,12 @@ exports['testConfigOverrides / has originalTitle when skipped due to browser con
Pending: 2
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: skip-browser.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/skip-browser.js.mp4
====================================================================================================
(Run Finished)
@@ -882,17 +867,12 @@ exports['testConfigOverrides / maintains runnable body when skipped due to brows
Pending: 2
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: skip-browser.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/skip-browser.js.mp4
====================================================================================================
(Run Finished)
@@ -36,17 +36,12 @@ exports['e2e typescript in spec and support file spec passes 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: typescript_passing.cy.ts
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/typescript_passing.cy.ts.mp4
====================================================================================================
(Run Finished)
@@ -113,17 +108,12 @@ Fix the error in your code and re-run your tests.
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: typescript_syntax_error.cy.ts
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/typescript_syntax_error.cy.ts.mp4
====================================================================================================
(Run Finished)
@@ -171,17 +161,12 @@ exports['e2e typescript in spec and support file project passes 1'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.ts
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.ts.mp4
====================================================================================================
(Run Finished)
@@ -230,17 +215,12 @@ exports['e2e typescript in spec and support file project wtih custom supportFile
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: app.cy.ts
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/app.cy.ts.mp4
====================================================================================================
(Run Finished)
@@ -46,7 +46,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: uncaught_synchronous_before_tests_parsed.js
@@ -58,11 +58,6 @@ We dynamically generated a new test to display this failure.
uncaught error was detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/uncaught_synchronous_before_tests_parsed.js.mp4
====================================================================================================
(Run Finished)
@@ -126,7 +121,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: uncaught_synchronous_during_hook.cy.js
@@ -138,11 +133,6 @@ We dynamically generated a new test to display this failure.
ght error was detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/uncaught_synchronous_during_hook.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -233,7 +223,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 1
Skipped: 0
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: uncaught_during_test.cy.js
@@ -249,11 +239,6 @@ https://on.cypress.io/uncaught-exception-from-application
ync app code error (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/uncaught_during_test.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -320,7 +305,7 @@ Because this error occurred during a \`before all\` hook we are skipping the rem
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: uncaught_during_hook.cy.js
@@ -332,11 +317,6 @@ 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/uncaught_during_hook.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -416,7 +396,7 @@ exports['e2e uncaught errors / failing5'] = `
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: caught_async_sync_test.cy.js
@@ -434,11 +414,6 @@ exports['e2e uncaught errors / failing5'] = `
(failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/caught_async_sync_test.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -46,7 +46,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: spec.cy.js
@@ -58,11 +58,6 @@ We dynamically generated a new test to display this failure.
de of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/spec.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -34,17 +34,12 @@ exports['e2e user agent / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: user_agent.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/user_agent.cy.js.mp4
====================================================================================================
(Run Finished)
+1 -6
View File
@@ -35,17 +35,12 @@ exports['e2e viewport / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: viewport.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/viewport.cy.js.mp4
====================================================================================================
(Run Finished)
+7 -42
View File
@@ -55,17 +55,12 @@ exports['e2e visit / low response timeout / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: visit.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/visit.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -133,7 +128,7 @@ If you do not want status codes to cause failures pass the option: \`failOnStatu
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: visit_http_500_response_failing.cy.js
@@ -145,11 +140,6 @@ If you do not want status codes to cause failures pass the option: \`failOnStatu
er response is 500 -- fails (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/visit_http_500_response_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -220,7 +210,7 @@ However, you can likely use \`cy.request()\` instead of \`cy.visit()\`.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: visit_non_html_content_type_failing.cy.js
@@ -232,11 +222,6 @@ However, you can likely use \`cy.request()\` instead of \`cy.visit()\`.
content type is plaintext -- fails (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/visit_non_html_content_type_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -317,7 +302,7 @@ When this \`load\` event occurs, Cypress will continue running commands.
Pending: 0
Skipped: 0
Screenshots: 2
Video: true
Video: false
Duration: X seconds
Spec Ran: visit_http_timeout_failing.cy.js
@@ -331,11 +316,6 @@ When this \`load\` event occurs, Cypress will continue running commands.
es out -- fails timeout exceeds timeout option (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/visit_http_timeout_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -459,7 +439,7 @@ Common situations why this would fail:
Pending: 0
Skipped: 0
Screenshots: 3
Video: true
Video: false
Duration: X seconds
Spec Ran: visit_response_never_ends_failing.cy.js
@@ -478,11 +458,6 @@ Common situations why this would fail:
(failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/visit_response_never_ends_failing.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -533,17 +508,12 @@ exports['e2e visit / low response timeout / calls onBeforeLoad when overwriting
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: issue_2196.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/issue_2196.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -621,17 +591,12 @@ exports['e2e visit / low response timeout / passes with experimentalSourceRewrit
Pending: 6
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: source_rewriting.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/source_rewriting.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -33,17 +33,12 @@ exports['@cypress/vite-dev-server react executes all of the tests for vite4.0.4-
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -78,7 +73,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -90,11 +85,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -166,7 +156,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -183,11 +173,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -222,7 +207,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -234,11 +219,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -265,7 +245,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -277,11 +257,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -303,17 +278,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -339,17 +309,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -374,17 +339,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -448,17 +408,12 @@ exports['@cypress/vite-dev-server react executes all of the tests for vite2.8.6-
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -493,7 +448,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -505,11 +460,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -581,7 +531,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -598,11 +548,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -637,7 +582,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -649,11 +594,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -680,7 +620,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -692,11 +632,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -718,17 +653,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -754,17 +684,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -789,17 +714,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -863,17 +783,12 @@ exports['@cypress/vite-dev-server react executes all of the tests for vite2.9.1-
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -908,7 +823,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -920,11 +835,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -996,7 +906,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -1013,11 +923,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -1052,7 +957,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -1064,11 +969,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -1095,7 +995,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -1107,11 +1007,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -1133,17 +1028,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -1169,17 +1059,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -1204,17 +1089,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -1278,17 +1158,12 @@ exports['@cypress/vite-dev-server react executes all of the tests for vite3.0.2-
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -1323,7 +1198,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -1335,11 +1210,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -1411,7 +1281,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -1428,11 +1298,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -1467,7 +1332,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -1479,11 +1344,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -1510,7 +1370,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -1522,11 +1382,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -1548,17 +1403,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -1584,17 +1434,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -1619,17 +1464,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -75,7 +75,7 @@ exports['e2e web security / when enabled / fails'] = `
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: web_security.cy.js
@@ -93,11 +93,6 @@ exports['e2e web security / when enabled / fails'] = `
oing a CORS request cross-origin (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/web_security.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -151,17 +146,12 @@ exports['e2e web security / when disabled / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: web_security.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/web_security.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -205,12 +195,6 @@ This option will not have an effect in Firefox. Tests that rely on web security
1 passing
Warning: We failed capturing this video.
This error will not affect or change the exit code.
TimeoutError: operation timed out
[stack trace lines]
(Results)
@@ -36,17 +36,12 @@ exports['@cypress/webpack-dev-server react executes all of the tests for webpack
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -89,7 +84,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -101,11 +96,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -177,7 +167,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -194,11 +184,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -233,7 +218,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -245,11 +230,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -276,7 +256,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -288,11 +268,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -314,17 +289,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -350,17 +320,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -385,17 +350,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -471,17 +431,12 @@ SyntaxError: /foo/bar/.projects/webpack4_wds4-react/src/AppCompilationError.cy.j
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -524,7 +479,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -536,11 +491,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -612,7 +562,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -629,11 +579,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -668,7 +613,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -680,11 +625,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -711,7 +651,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -723,11 +663,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -749,17 +684,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -785,17 +715,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -820,17 +745,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -897,17 +817,12 @@ exports['@cypress/webpack-dev-server react executes all of the tests for webpack
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -950,7 +865,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -962,11 +877,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -1038,7 +948,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -1055,11 +965,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -1094,7 +999,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -1106,11 +1011,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -1137,7 +1037,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -1149,11 +1049,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -1175,17 +1070,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -1211,17 +1101,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -1246,17 +1131,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -1335,17 +1215,12 @@ webpack x.x.x compiled with x errors in xxx ms
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: App.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/App.cy.jsx.mp4
Running: AppCompilationError.cy.jsx (2 of 8)
@@ -1388,7 +1263,7 @@ We dynamically generated a new test to display this failure.
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: AppCompilationError.cy.jsx
@@ -1400,11 +1275,6 @@ We dynamically generated a new test to display this failure.
s detected outside of a test (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/AppCompilationError.cy.jsx.mp4
Running: Errors.cy.jsx (3 of 8)
@@ -1476,7 +1346,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 4
Video: true
Video: false
Duration: X seconds
Spec Ran: Errors.cy.jsx
@@ -1493,11 +1363,6 @@ https://on.cypress.io/uncaught-exception-from-application
).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Errors.cy.jsx.mp4
Running: MissingReact.cy.jsx (4 of 8)
@@ -1532,7 +1397,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReact.cy.jsx
@@ -1544,11 +1409,6 @@ https://on.cypress.io/uncaught-exception-from-application
ng
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReact.cy.jsx.mp4
Running: MissingReactInSpec.cy.jsx (5 of 8)
@@ -1575,7 +1435,7 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 1
Video: true
Video: false
Duration: X seconds
Spec Ran: MissingReactInSpec.cy.jsx
@@ -1587,11 +1447,6 @@ https://on.cypress.io/uncaught-exception-from-application
his file (failed).png
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/MissingReactInSpec.cy.jsx.mp4
Running: Rerendering.cy.jsx (6 of 8)
@@ -1613,17 +1468,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Rerendering.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Rerendering.cy.jsx.mp4
Running: Unmount.cy.jsx (7 of 8)
@@ -1649,17 +1499,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: Unmount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/Unmount.cy.jsx.mp4
Running: mount.cy.jsx (8 of 8)
@@ -1684,17 +1529,12 @@ https://on.cypress.io/uncaught-exception-from-application
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: mount.cy.jsx
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/mount.cy.jsx.mp4
====================================================================================================
(Run Finished)
@@ -33,17 +33,12 @@ exports['e2e websockets / passes'] = `
Pending: 0
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: websockets.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/websockets.cy.js.mp4
====================================================================================================
(Run Finished)
+2 -12
View File
@@ -43,17 +43,12 @@ exports['e2e xhr / passes in global mode'] = `
Pending: 1
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: xhr.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/xhr.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -113,17 +108,12 @@ exports['e2e xhr / passes through CLI'] = `
Pending: 1
Skipped: 0
Screenshots: 0
Video: true
Video: false
Duration: X seconds
Spec Ran: xhr.cy.js
(Video)
- Video output: /XXX/XXX/XXX/cypress/videos/xhr.cy.js.mp4
====================================================================================================
(Run Finished)
@@ -1,5 +1,4 @@
module.exports = {
video: false,
'e2e': {
baseUrl: 'http://localhost:3434',
setupNodeEvents: require('./cypress/plugins'),
@@ -1,7 +1,6 @@
module.exports = {
'projectId': 'pid123',
'videoUploadOnPasses': false,
'video': false,
'defaultCommandTimeout': 9999,
'e2e': {
setupNodeEvents (on, config) {
@@ -11,6 +11,7 @@ module.exports = {
})
.then(() => {
config.defaultCommandTimeout = 500
config.video = true
config.videoCompression = 20
config.env.foo = 'bar'
@@ -2,9 +2,9 @@ const fs = require('fs-extra')
module.exports = {
fixturesFolder: false,
video: true,
e2e: {
supportFile: false,
video: true,
setupNodeEvents (on, config) {
on('after:spec', (spec, results) => {
return fs.remove(results.video)
@@ -2,7 +2,6 @@ module.exports = {
fixturesFolder: false,
e2e: {
supportFile: false,
video: false,
setupNodeEvents (on, config) {
on('before:spec', (args) => {
console.log('<---- before:spec promise start')
@@ -8,7 +8,6 @@ module.exports = {
experimentalInteractiveRunEvents: true,
e2e: {
supportFile: false,
video: false,
setupNodeEvents (on, config) {
on('before:run', (runDetails) => {
const { specs, browser } = runDetails
@@ -2,7 +2,6 @@ module.exports = {
fixturesFolder: false,
e2e: {
supportFile: false,
video: false,
setupNodeEvents (on, config) {
on('before:spec', () => {
throw new Error('error thrown in before:spec')
@@ -1,6 +1,5 @@
module.exports = {
numTestsKeptInMemory: 0,
video: false,
e2e: {
specPattern: 'no-matches/**.cy.*',
},
@@ -1,6 +1,5 @@
module.exports = {
numTestsKeptInMemory: 0,
video: false,
e2e: {
specPattern: 'no-matches/**.cy.*',
},
@@ -1,6 +1,5 @@
module.exports = {
numTestsKeptInMemory: 0,
video: false,
e2e: {
supportFile: false,
},
@@ -1,6 +1,5 @@
module.exports = {
numTestsKeptInMemory: 0,
video: false,
e2e: {},
component: {
devServer () {
@@ -1,6 +1,5 @@
module.exports = {
numTestsKeptInMemory: 0,
video: false,
e2e: {},
experimentalOriginDependencies: true,
}
@@ -1,5 +1,4 @@
module.exports = {
numTestsKeptInMemory: 0,
video: false,
e2e: {},
}

Some files were not shown because too many files have changed in this diff Show More