Skip to content

Commit

Permalink
fix(table): form generator radio
Browse files Browse the repository at this point in the history
closes [#11003](#11003)

Fixing e2e tests
  • Loading branch information
khotcholava committed Dec 11, 2024
1 parent 17d8ba5 commit f58769b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/docs/platform/input-group/e2e/input-group.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

Expand Down
2 changes: 1 addition & 1 deletion libs/docs/platform/input/e2e/input.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down
2 changes: 1 addition & 1 deletion libs/docs/platform/textarea/e2e/textarea.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit f58769b

Please sign in to comment.