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.
50 lines
2.2 KiB
50 lines
2.2 KiB
2 years ago
|
{
|
||
|
"name": "playwright",
|
||
|
"version": "1.0.0",
|
||
|
"description": "",
|
||
|
"main": "index.js",
|
||
2 years ago
|
"scripts": {
|
||
2 years ago
|
"test": "TRACE=true npx playwright test --workers=4",
|
||
2 years ago
|
"test:fast": "npx playwright test --workers=6",
|
||
2 years ago
|
"test:shard:1": "TRACE=true npx playwright test --workers=4 --shard=1/2",
|
||
|
"test:shard:2": "TRACE=true npx playwright test --workers=4 --shard=2/2",
|
||
|
"test:repeat": "TRACE=true npx playwright test --workers=4 --repeat-each=12",
|
||
2 years ago
|
"test:quick": "TRACE=true PW_QUICK_TEST=1 npx playwright test --workers=4",
|
||
|
"test:debug": "./startPlayWrightServer.sh; PW_TEST_REUSE_CONTEXT=1 PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:31000/ PWDEBUG=console npx playwright test -c playwright.config.ts --headed --project=chromium --retries 0 --timeout 0 --workers 1 --max-failures=1",
|
||
|
"test:debug:quick:sqlite": "./startPlayWrightServer.sh; PW_QUICK_TEST=1 PW_TEST_REUSE_CONTEXT=1 PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:31000/ PWDEBUG=console npx playwright test -c playwright.config.ts --headed --project=chromium --retries 0 --timeout 5 --workers 1 --max-failures=1",
|
||
2 years ago
|
"ci:test": "npx playwright test --workers=2",
|
||
2 years ago
|
"ci:test:shard:1": "npx playwright test --workers=2 --shard=1/2",
|
||
|
"ci:test:shard:2": "npx playwright test --workers=2 --shard=2/2",
|
||
2 years ago
|
"ci:test:mysql": "E2E_DB_TYPE=mysql npx playwright test --workers=2",
|
||
|
"ci:test:pg": "E2E_DB_TYPE=pg npx playwright test --workers=2"
|
||
2 years ago
|
},
|
||
2 years ago
|
"keywords": [],
|
||
|
"author": "",
|
||
|
"license": "ISC",
|
||
|
"devDependencies": {
|
||
2 years ago
|
"@playwright/test": "1.27.1",
|
||
2 years ago
|
"@typescript-eslint/eslint-plugin": "^4.0.1",
|
||
|
"@typescript-eslint/parser": "^4.0.1",
|
||
2 years ago
|
"axios": "^0.24.0",
|
||
2 years ago
|
"dotenv": "^16.0.3",
|
||
2 years ago
|
"eslint": "^7.8.0",
|
||
|
"eslint-config-prettier": "^6.15.0",
|
||
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
||
|
"eslint-plugin-functional": "^3.0.2",
|
||
|
"eslint-plugin-import": "^2.22.0",
|
||
2 years ago
|
"eslint-plugin-json": "^3.1.0",
|
||
2 years ago
|
"eslint-plugin-prettier": "^4.0.0",
|
||
2 years ago
|
"husky": "^8.0.1",
|
||
|
"lint-staged": "^13.0.3",
|
||
2 years ago
|
"mysql2": "^2.3.3",
|
||
2 years ago
|
"pg": "^8.8.0",
|
||
2 years ago
|
"prettier": "^2.7.1",
|
||
2 years ago
|
"promised-sqlite3": "^1.2.0"
|
||
2 years ago
|
},
|
||
|
"dependencies": {
|
||
2 years ago
|
"body-parser": "^1.20.1",
|
||
|
"express": "^4.18.2",
|
||
2 years ago
|
"xlsx": "^0.18.5"
|
||
2 years ago
|
}
|
||
|
}
|