Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New] Added test cases for pages admin form builder components transl… #353

Conversation

Srinivas9933
Copy link
Contributor

Added test cases for pages admin form builder components translations form components field translation component.

  • component.spec.js


expect(fields).to.deep.equal(expectedNames);
mountedFormComponent(<FieldTranslationRow {...props} />, state)
expect(screen.getAllByRole('textbox')).toHaveLength(1);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At least 2 inputs should exist in a FieldTranslationRow one for the English language and one for the selected language.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@jtoliver-quoin jtoliver-quoin force-pushed the develop_react_upgrade branch 2 times, most recently from 0211087 to a407855 Compare November 1, 2023 15:49
@dhernandez-quoin dhernandez-quoin changed the base branch from develop_react_upgrade to develop_msal_v2 November 1, 2023 16:27
@dhernandez-quoin dhernandez-quoin changed the base branch from develop_msal_v2 to develop_react_upgrade November 1, 2023 16:27
expect(component.find(FieldTranslationRow)).to.have.lengthOf(1);
localesToRender.mockReturnValue([fromJS({ id: "en" })]);
mountedFormComponent(<FieldTranslationRow {...props} />, state);
expect(screen.getByText("forms.manage")).toBeInTheDocument();
});

it("should render the <FormSectionField /> for the available languages", () => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test should test if there is a form section field for en, ar, and fr locales. There should be 3 inputs with different name attributes

      "fields.field_1.display_name.en",
      "fields.field_1.display_name.fr",
      "fields.field_1.display_name.ar"

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like the return of localesToRender is returning an plain array. You can remove the fromJS

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

state
}));
});
const props = { field: fromJS(field1), selectedLocaleId: "en" };

it("should render <FieldTranslationRow />", () => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove this unit test

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

expect(component.find(FieldTranslationRow)).to.have.lengthOf(1);
localesToRender.mockReturnValue([fromJS({ id: "en" })]);
mountedFormComponent(<FieldTranslationRow {...props} />, state);
expect(screen.getByText("forms.manage")).toBeInTheDocument();
});

it("should render the <FormSectionField /> for the available languages", () => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like the return of localesToRender is returning an plain array. You can remove the fromJS

@Srinivas9933 Srinivas9933 force-pushed the trigyn-testcases-pages-admin-form-builder-components-translations-form-components-field-translation-row branch from 76a171c to 759a1c1 Compare April 10, 2024 10:51
Srinivas9933 and others added 2 commits April 22, 2024 18:11
…n-form-builder-components-translations-form-components-field-translation-row
@dhernandez-quoin dhernandez-quoin self-assigned this May 29, 2024
@dhernandez-quoin
Copy link
Contributor

Already merged here: #454

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants