Skip to content

Commit f73352e

Browse files
committed
chore: remove unnecessary comments and whitespace from e2e tests and config files.
1 parent e913fb7 commit f73352e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

e2e/tests/plugin_configs.crud-required-fields.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ test('should CRUD plugin config with required fields', async ({ page }) => {
5656
// Just verify the Add button is present and accessible
5757
const addBtn = pluginConfigsPom.getAddBtn(page);
5858
await expect(addBtn).toBeVisible();
59-
60-
// Note: Plugin configs may allow submission without plugins initially,
61-
// as they only require a name field. The actual validation happens server-side.
59+
60+
// Note: The client-side schema allows submission without plugins (it validates structure).
61+
// The server may perform additional logic validation.
6262
});
6363

6464
await test.step('submit with required fields', async () => {

e2e/tests/services.crud-required-fields.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ test('should CRUD service with required fields', async ({ page }) => {
4141

4242
await servicesPom.getAddServiceBtn(page).click();
4343
await servicesPom.isAddPage(page);
44-
45-
46-
47-
4844
await test.step('submit with required fields', async () => {
4945
await uiFillServiceRequiredFields(page, {
5046
name: serviceName,

0 commit comments

Comments
 (0)