* Added test for rendering content with member picker value * Added tests for rendering content with multiple media picker * Added tests for rendering content with multi url picker * Bumped version * Updated tests for member picker * Make all rendering content tests run in the pipeline * Bumped version * Fixed indentation * Added clean for media * Reverted --------- Co-authored-by: Andreas Zerbst <73799582+andr317c@users.noreply.github.com> Co-authored-by: Andreas Zerbst <andr317c@live.dk>
30 lines
941 B
JSON
30 lines
941 B
JSON
{
|
|
"name": "acceptancetest",
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "node postinstall.js",
|
|
"config": "node config.js",
|
|
"ui": "npx playwright test --headed DefaultConfig",
|
|
"test": "npx playwright test DefaultConfig",
|
|
"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.43",
|
|
"@types/node": "^20.9.0",
|
|
"prompt": "^1.2.0",
|
|
"tslib": "^2.4.0",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@umbraco/json-models-builders": "^2.0.26",
|
|
"@umbraco/playwright-testhelpers": "^15.0.6",
|
|
"camelize": "^1.0.0",
|
|
"dotenv": "^16.3.1",
|
|
"node-fetch": "^2.6.7"
|
|
}
|
|
}
|