mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
3 years ago
|
{
|
||
3 years ago
|
"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/gqlTableOps.js",
|
||
|
"test/gqlViews.js",
|
||
|
"test/gqlRoles.js",
|
||
|
"test/gqlMisc.js",
|
||
|
"test/xcdb-gqlTableOps.js",
|
||
|
"test/xcdb-gqlViews.js",
|
||
|
"test/xcdb-gqlRoles.js",
|
||
3 years ago
|
"test/xcdb-gqlMisc.js",
|
||
|
"test/pg-restTableOps.js",
|
||
|
"test/pg-restViews.js",
|
||
|
"test/pg-restRoles.js",
|
||
2 years ago
|
"test/pg-restMisc.js",
|
||
2 years ago
|
"test/quickTest.js"
|
||
3 years ago
|
],
|
||
|
"defaultCommandTimeout": 13000,
|
||
|
"pageLoadTimeout": 600000,
|
||
|
"viewportWidth": 1980,
|
||
|
"viewportHeight": 1000,
|
||
|
"video": false,
|
||
|
"retries": 0,
|
||
3 years ago
|
"screenshotOnRunFailure": false,
|
||
3 years ago
|
"numTestsKeptInMemory": 0,
|
||
2 years ago
|
"experimentalInteractiveRunEvents": true,
|
||
3 years ago
|
"env": {
|
||
|
"testMode": [
|
||
|
{ "apiType": "rest", "dbType": "xcdb" },
|
||
|
{ "apiType": "graphql", "dbType": "xcdb" },
|
||
|
{ "apiType": "rest", "dbType": "mysql" },
|
||
3 years ago
|
{ "apiType": "graphql", "dbType": "mysql" },
|
||
|
{ "apiType": "rest", "dbType": "postgres" }
|
||
3 years ago
|
],
|
||
|
"db": {
|
||
|
"host": "127.0.0.1",
|
||
|
"user": "root",
|
||
|
"password": "password"
|
||
3 years ago
|
},
|
||
3 years ago
|
"screenshot": false,
|
||
|
"airtable": {
|
||
|
"apiKey": "keyn1MR87qgyUsYg4",
|
||
2 years ago
|
"sharedBase": "https://airtable.com/shr4z0qmh6dg5s3eB"
|
||
3 years ago
|
}
|
||
3 years ago
|
},
|
||
|
"fixturesFolder": "scripts/cypress/fixtures",
|
||
|
"integrationFolder": "scripts/cypress/integration",
|
||
|
"pluginsFile": "scripts/cypress/plugins/index.js",
|
||
|
"screenshotsFolder": "scripts/cypress/screenshots",
|
||
|
"videosFolder": "scripts/cypress/videos",
|
||
|
"downloadsFolder": "scripts/cypress/downloads",
|
||
|
"supportFile": "scripts/cypress/support/index.js",
|
||
|
"chromeWebSecurity": false
|
||
3 years ago
|
}
|