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.
29 lines
1.2 KiB
29 lines
1.2 KiB
{ |
|
"name": "playwright", |
|
"version": "1.0.0", |
|
"description": "", |
|
"main": "index.js", |
|
"scripts": { |
|
"test": "TRACE=true npx playwright test --workers=4", |
|
"quick-test": "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", |
|
"ci-test-mysql": "E2E_DB_TYPE=mysql npx playwright test --workers=2" |
|
}, |
|
"keywords": [], |
|
"author": "", |
|
"license": "ISC", |
|
"devDependencies": { |
|
"@playwright/test": "1.27.1", |
|
"axios": "^0.24.0", |
|
"dotenv": "^16.0.3", |
|
"mysql2": "^2.3.3", |
|
"promised-sqlite3": "^1.2.0" |
|
}, |
|
"dependencies": { |
|
"body-parser": "^1.20.1", |
|
"express": "^4.18.2", |
|
"fs": "^0.0.1-security", |
|
"xlsx": "^0.18.5" |
|
} |
|
}
|
|
|