mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat: Add test:e2e:dev:v2 cypress package command (no-changelog) (#12108)
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
"cypress:install": "cypress install",
|
"cypress:install": "cypress install",
|
||||||
"test:e2e:ui": "scripts/run-e2e.js ui",
|
"test:e2e:ui": "scripts/run-e2e.js ui",
|
||||||
"test:e2e:dev": "scripts/run-e2e.js dev",
|
"test:e2e:dev": "scripts/run-e2e.js dev",
|
||||||
|
"test:e2e:dev:v2": "scripts/run-e2e.js dev:v2",
|
||||||
"test:e2e:all": "scripts/run-e2e.js all",
|
"test:e2e:all": "scripts/run-e2e.js all",
|
||||||
"format": "biome format --write .",
|
"format": "biome format --write .",
|
||||||
"format:check": "biome ci .",
|
"format:check": "biome ci .",
|
||||||
|
|||||||
@@ -57,6 +57,17 @@ switch (scenario) {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
case 'dev:v2':
|
||||||
|
runTests({
|
||||||
|
startCommand: 'develop',
|
||||||
|
url: 'http://localhost:8080/favicon.ico',
|
||||||
|
testCommand: 'cypress open',
|
||||||
|
customEnv: {
|
||||||
|
CYPRESS_NODE_VIEW_VERSION: 2,
|
||||||
|
CYPRESS_BASE_URL: 'http://localhost:8080',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
break;
|
||||||
case 'all':
|
case 'all':
|
||||||
const specSuiteFilter = process.argv[3];
|
const specSuiteFilter = process.argv[3];
|
||||||
const specParam = specSuiteFilter ? ` --spec **/*${specSuiteFilter}*` : '';
|
const specParam = specSuiteFilter ? ` --spec **/*${specSuiteFilter}*` : '';
|
||||||
|
|||||||
Reference in New Issue
Block a user