1
0
mirror of synced 2026-01-19 09:07:23 -05:00
Files
airbyte/airbyte-webapp-e2e-tests/package.json
Sofiia Zaitseva d16f673c87 🪟 🚥 Add tests for verify sync mode options (#16549)
add tests for checking sync mode options
2022-11-30 12:03:23 +02:00

34 lines
1.1 KiB
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",
"cypress:ci:record": "CYPRESS_BASE_URL=http://localhost:8000 cypress run --record --key $CYPRESS_KEY",
"createdbsource": "docker run --rm -d -p 5433:5432 -e POSTGRES_PASSWORD=secret_password -e POSTGRES_DB=airbyte_ci_source --name airbyte_ci_pg_source postgres",
"createdbdestination": "docker run --rm -d -p 5434:5432 -e POSTGRES_PASSWORD=secret_password -e POSTGRES_DB=airbyte_ci_destination --name airbyte_ci_pg_destination postgres"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"rules": {
"cypress/no-unnecessary-waiting": "warn"
},
"extends": [
"plugin:cypress/recommended"
]
},
"devDependencies": {
"@types/node": "^18.11.9",
"cypress": "^9.2.0",
"cypress-postgres": "^1.1.1",
"eslint-plugin-cypress": "^2.12.1",
"prettier": "^2.6.2",
"typescript": "^4.5.4"
}
}