* feat: introduce playwright * test: migrate apps folder to playwright (#1201) * test: rewrite connections tests with playwright (#1203) * test: rewrite executions tests with playwright (#1207) * test: rewrite flow editor tests with playwright (#1212) * test(flow-editor): rewrite tests using serial mode (#1218) * test: update custom connection creation paths * test: move login logic to page fixture * test: remove cypress tests and deps --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
32 lines
882 B
JSON
32 lines
882 B
JSON
{
|
|
"name": "@automatisch/e2e-tests",
|
|
"version": "0.8.0",
|
|
"license": "See LICENSE file",
|
|
"private": true,
|
|
"description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
|
|
"scripts": {
|
|
"test": "playwright test",
|
|
"test:fast": "yarn test -j 90% --quiet --reporter null --ignore-snapshots -x"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "automatisch contributors",
|
|
"url": "https://github.com/automatisch/automatisch/graphs/contributors"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/automatisch/automatisch#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/automatisch/automatisch.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/automatisch/automatisch/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.36.2"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.3.1"
|
|
}
|
|
}
|