diff --git a/libs/docs/platform/input-group/e2e/input-group.e2e-spec.ts b/libs/docs/platform/input-group/e2e/input-group.e2e-spec.ts index 042502f1513..516d2556b8e 100644 --- a/libs/docs/platform/input-group/e2e/input-group.e2e-spec.ts +++ b/libs/docs/platform/input-group/e2e/input-group.e2e-spec.ts @@ -170,7 +170,7 @@ describe('Input Group should', () => { await expect(await $$(withFormInputQuestionMark)).toBeTruthy(); - await expect(await executeScriptAfterTagAttr(withFormInputAsterixMark, 'content')).toBe('"*"'); + await expect(await executeScriptAfterTagAttr(withFormInputAsterixMark, 'content')).toBe('"*" / ""'); await expect((await getText(inputGroupPage.withFormInputErrorTooltip)).trim()).toEqual('Value is required'); }); diff --git a/libs/docs/platform/input/e2e/input.e2e-spec.ts b/libs/docs/platform/input/e2e/input.e2e-spec.ts index 85081a0bf09..82cbe4f0ec7 100644 --- a/libs/docs/platform/input/e2e/input.e2e-spec.ts +++ b/libs/docs/platform/input/e2e/input.e2e-spec.ts @@ -159,7 +159,7 @@ describe('Input should ', () => { it('should have visual cue for require input', async () => { await scrollIntoView(requiredInputLabel); await pause(2000); - await expect(await executeScriptAfterTagAttr(requiredInputLabel, 'content')).toBe('"*"'); + await expect(await executeScriptAfterTagAttr(requiredInputLabel, 'content')).toBe('"*" / ""'); }); it('should have visual cue for information', async () => { diff --git a/libs/docs/platform/textarea/e2e/textarea.e2e-spec.ts b/libs/docs/platform/textarea/e2e/textarea.e2e-spec.ts index 482e743343c..b58182b1610 100644 --- a/libs/docs/platform/textarea/e2e/textarea.e2e-spec.ts +++ b/libs/docs/platform/textarea/e2e/textarea.e2e-spec.ts @@ -121,7 +121,7 @@ describe('Verify Textarea component', () => { it('should have * if textarea is mandatory', async () => { const labelAsterisk = await executeScriptAfterTagAttr(detailedTextAreaLabel, 'content'); - await expect(labelAsterisk).toBe('"*"'); + await expect(labelAsterisk).toBe('"*" / ""'); }); it('should see an error if trying to click empty mandatory textarea', async () => {