* Updated due to test helper changes * Updated user group tests due to api helper changes * Updated tests for user group default configuration due to UI changes * Added tests for document property value permission * Added tests for document property value permission in content with block * Bumped version * Make specific tests run in the pipeline * Added skip tag and issue link for the failing tests * Fixed comment * Bumped version * Fixed comments * Bumped version and reverted npm command
30 lines
938 B
JSON
30 lines
938 B
JSON
{
|
|
"name": "acceptancetest",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "npx playwright test DefaultConfig",
|
|
"ui": "npx playwright test --ui DefaultConfig",
|
|
"postinstall": "node postinstall.js",
|
|
"config": "node config.js",
|
|
"testSqlite": "npx playwright test DefaultConfig --grep-invert \"Users\"",
|
|
"all": "npx playwright test",
|
|
"createTest": "node createTest.js",
|
|
"smokeTest": "npx playwright test DefaultConfig --grep \"@smoke\"",
|
|
"smokeTestSqlite": "npx playwright test DefaultConfig --grep \"@smoke\" --grep-invert \"Users\""
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.50",
|
|
"@types/node": "^20.9.0",
|
|
"prompt": "^1.2.0",
|
|
"tslib": "^2.4.0",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@umbraco/json-models-builders": "^2.0.35",
|
|
"@umbraco/playwright-testhelpers": "^16.0.20",
|
|
"camelize": "^1.0.0",
|
|
"dotenv": "^16.3.1",
|
|
"node-fetch": "^2.6.7"
|
|
}
|
|
}
|