Migration to cypress 10.
15
packages/editor/cypress.config.ts
Normal 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',
|
||||||
|
},
|
||||||
|
});
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"video": false,
|
|
||||||
"videoUploadOnPasses": false,
|
|
||||||
"baseUrl": "http://localhost:8081",
|
|
||||||
"includeShadowDom": true
|
|
||||||
}
|
|
||||||
|
|
16
packages/mindplot/cypress.config.js
Normal 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}',
|
||||||
|
},
|
||||||
|
})
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"video": false,
|
|
||||||
"videoUploadOnPasses": false,
|
|
||||||
"baseUrl": "http://localhost:8083",
|
|
||||||
"projectId": "it9g7s"
|
|
||||||
}
|
|
14
packages/web2d/cypress.config.js
Normal 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',
|
||||||
|
},
|
||||||
|
})
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"video": false,
|
|
||||||
"videoUploadOnPasses": false,
|
|
||||||
"baseUrl": "http://localhost:8080"
|
|
||||||
}
|
|
BIN
packages/web2d/cypress/snapshots/playground.cy.js/Arrow.snap.png
Normal file
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 148 KiB |
BIN
packages/web2d/cypress/snapshots/playground.cy.js/Font.snap.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
packages/web2d/cypress/snapshots/playground.cy.js/Group.snap.png
Normal file
After Width: | Height: | Size: 325 KiB |
BIN
packages/web2d/cypress/snapshots/playground.cy.js/Line.snap.png
Normal file
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 47 KiB |
BIN
packages/web2d/cypress/snapshots/playground.cy.js/Rect.snap.png
Normal file
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 32 KiB |
BIN
packages/web2d/cypress/snapshots/playground.cy.js/Text.snap.png
Normal file
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 301 KiB |
14
packages/webapp/cypress.config.ts
Normal 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',
|
||||||
|
},
|
||||||
|
});
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"video": false,
|
|
||||||
"videoUploadOnPasses": false,
|
|
||||||
"baseUrl": "http://localhost:3000"
|
|
||||||
}
|
|