mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 06:35:11 +00:00
chore: move cypress-v2 to cypress
This commit is contained in:
52
scripts/cypress/cypress.json
Normal file
52
scripts/cypress/cypress.json
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"baseUrl": "http://localhost:3000/",
|
||||
"testFiles": [
|
||||
"test/restTableOps.js",
|
||||
"test/restViews.js",
|
||||
"test/restRoles.js",
|
||||
"test/restMisc.js",
|
||||
"test/xcdb-restTableOps.js",
|
||||
"test/xcdb-restViews.js",
|
||||
"test/xcdb-restRoles.js",
|
||||
"test/xcdb-restMisc.js",
|
||||
"test/pg-restTableOps.js",
|
||||
"test/pg-restViews.js",
|
||||
"test/pg-restRoles.js",
|
||||
"test/pg-restMisc.js",
|
||||
"test/quickTest.js"
|
||||
],
|
||||
"defaultCommandTimeout": 13000,
|
||||
"pageLoadTimeout": 600000,
|
||||
"viewportWidth": 1980,
|
||||
"viewportHeight": 1000,
|
||||
"video": false,
|
||||
"retries": 0,
|
||||
"screenshotOnRunFailure": true,
|
||||
"numTestsKeptInMemory": 0,
|
||||
"experimentalInteractiveRunEvents": true,
|
||||
"env": {
|
||||
"testMode": [
|
||||
{ "apiType": "rest", "dbType": "xcdb" },
|
||||
{ "apiType": "rest", "dbType": "mysql" },
|
||||
{ "apiType": "rest", "dbType": "postgres" }
|
||||
],
|
||||
"db": {
|
||||
"host": "127.0.0.1",
|
||||
"user": "root",
|
||||
"password": "password"
|
||||
},
|
||||
"screenshot": false,
|
||||
"airtable": {
|
||||
"apiKey": "keyn1MR87qgyUsYg4",
|
||||
"sharedBase": "https://airtable.com/shr4z0qmh6dg5s3eB"
|
||||
}
|
||||
},
|
||||
"fixturesFolder": "scripts/cypress-v2/fixtures",
|
||||
"integrationFolder": "scripts/cypress-v2/integration",
|
||||
"pluginsFile": "scripts/cypress-v2/plugins/index.js",
|
||||
"screenshotsFolder": "scripts/cypress-v2/screenshots",
|
||||
"videosFolder": "scripts/cypress-v2/videos",
|
||||
"downloadsFolder": "scripts/cypress-v2/downloads",
|
||||
"supportFile": "scripts/cypress-v2/support/index.js",
|
||||
"chromeWebSecurity": false
|
||||
}
|
||||
Reference in New Issue
Block a user