* Implement e2e tests * Revert cypress tests * Fix testids * Bump versions * Rename submit button command * Bymp cypress version Co-authored-by: Artem Astapenko <jamakase54@gmail.com>
26 lines
536 B
JSON
26 lines
536 B
JSON
{
|
|
"name": "airbyte-webapp-e2e-tests",
|
|
"version": "0.0.0",
|
|
"description": "Airbyte e2e testing",
|
|
"scripts": {
|
|
"cypress:open": "cypress open",
|
|
"cypress:ci": "CYPRESS_BASE_URL=http://localhost:8000 cypress run"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"cypress/no-unnecessary-waiting": "warn"
|
|
},
|
|
"extends": [
|
|
"plugin:cypress/recommended"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"cypress": "^9.2.0",
|
|
"eslint-plugin-cypress": "^2.12.1"
|
|
}
|
|
}
|