Migration to cypress 10.

This commit is contained in:
Paulo Gustavo Veiga 2022-10-30 23:16:09 -07:00
parent dbfed09f3a
commit e200867369
33 changed files with 59 additions and 23 deletions

View File

@ -0,0 +1,15 @@
import { defineConfig } from 'cypress';
export default defineConfig({
video: false,
videoUploadOnPasses: false,
includeShadowDom: true,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config);
},
baseUrl: 'http://localhost:8081',
},
});

View File

@ -1,7 +0,0 @@
{
"video": false,
"videoUploadOnPasses": false,
"baseUrl": "http://localhost:8081",
"includeShadowDom": true
}

View File

@ -0,0 +1,16 @@
const { defineConfig } = require('cypress')
module.exports = defineConfig({
video: false,
videoUploadOnPasses: false,
projectId: 'it9g7s',
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
baseUrl: 'http://localhost:8083',
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
},
})

View File

@ -1,6 +0,0 @@
{
"video": false,
"videoUploadOnPasses": false,
"baseUrl": "http://localhost:8083",
"projectId": "it9g7s"
}

View File

@ -0,0 +1,14 @@
const { defineConfig } = require('cypress')
module.exports = defineConfig({
video: false,
videoUploadOnPasses: false,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
baseUrl: 'http://localhost:8080',
},
})

View File

@ -1,5 +0,0 @@
{
"video": false,
"videoUploadOnPasses": false,
"baseUrl": "http://localhost:8080"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 KiB

View File

@ -0,0 +1,14 @@
import { defineConfig } from 'cypress';
export default defineConfig({
video: false,
videoUploadOnPasses: false,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.ts')(on, config);
},
baseUrl: 'http://localhost:3000',
},
});

View File

@ -1,5 +0,0 @@
{
"video": false,
"videoUploadOnPasses": false,
"baseUrl": "http://localhost:3000"
}