-
Notifications
You must be signed in to change notification settings - Fork 62
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
|
||
expect(fields).to.deep.equal(expectedNames); | ||
mountedFormComponent(<FieldTranslationRow {...props} />, state) | ||
expect(screen.getAllByRole('textbox')).toHaveLength(1); |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
0211087
to
a407855
Compare
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", () => { |
There was a problem hiding this comment.
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"
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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 />", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this unit test
There was a problem hiding this comment.
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", () => { |
There was a problem hiding this comment.
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
…ations form components field translation
76a171c
to
759a1c1
Compare
…n-form-builder-components-translations-form-components-field-translation-row
Already merged here: #454 |
Added test cases for pages admin form builder components translations form components field translation component.