Files
Umbraco-CMS/tests/Umbraco.Tests.AcceptanceTest/package.json
Niels Lyngsø c1b3f41f7c TextBox: Data-type validation for max chars (fixes #18817) (#20843)
* configure max chars for textbox

* min 1

* Adds server-side check for text box min and max character validation.

* Applied suggestion from code review.

* Bumped version of test helper

* Fixed test that was creating a text string data type with too large a maximum characters setting.

---------

Co-authored-by: Andy Butland <abutland73@gmail.com>
Co-authored-by: Nhu Dinh <hnd@umbraco.dk>
2025-11-18 08:16:59 +01:00

32 lines
1.1 KiB
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\"",
"releaseTest": "npx playwright test DefaultConfig --grep \"@release\"",
"testWindows": "npx playwright test DefaultConfig --grep-invert \"RelationType\""
},
"devDependencies": {
"@playwright/test": "1.56",
"@types/node": "^20.9.0",
"prompt": "^1.2.0",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@umbraco/json-models-builders": "^2.0.42",
"@umbraco/playwright-testhelpers": "^17.0.9",
"camelize": "^1.0.0",
"dotenv": "^16.3.1",
"node-fetch": "^2.6.7"
}
}