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

(test) O3-3939: Add test to repeat component #385

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

WodPachua
Copy link
Contributor

@WodPachua WodPachua commented Sep 10, 2024

Requirements

  • This PR has a title that briefly describes the work done including the ticket number. If there is a ticket, make sure your PR title includes a conventional commit label. See existing PR titles for inspiration.
  • My work conforms to the OpenMRS 3.0 Styleguide and design documentation.
  • My work includes tests or is validated by existing tests.

Summary

Added test to the repeat component in the form engine

Screenshots

Related Issue

O3-3939

Other

@WodPachua WodPachua marked this pull request as draft September 10, 2024 06:46
@WodPachua WodPachua changed the title (test) add test to repeat component (test) Add test to repeat component Sep 10, 2024
@WodPachua WodPachua changed the title (test) Add test to repeat component (test) O3-3939: Add test to repeat component Sep 10, 2024
@samuelmale
Copy link
Member

@WodPachua are you still working on this?

@WodPachua
Copy link
Contributor Author

Was trying to add another/more tests... had made the draft for your review if am on the right track

@WodPachua WodPachua marked this pull request as ready for review September 18, 2024 12:22
@WodPachua WodPachua marked this pull request as draft September 18, 2024 13:21
@WodPachua WodPachua marked this pull request as ready for review September 24, 2024 19:24
Comment on lines +30 to +36
it('Should update field ID in expressions when adding repeated fields', () => {
const expression = "infantStatus !== 'someValue'";
const fieldIds = ['birthDate', 'infantStatus', 'deathDate'];
const updatedExpression = updateFieldIdInExpression(expression, 2, fieldIds);

expect(updatedExpression).toEqual("infantStatus_2 !== 'someValue'");
});
Copy link
Member

Choose a reason for hiding this comment

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

@WodPachua I like the test but the scope of work begs for testing the repeat component itself and not just the helpers. You want to render a form with a "repeatable" field, and then test out things like:

  1. Asserting that clicking the "Add" button clones the field at origin
  2. Test out submission (Assert that both the origin and its instances' values are submitted successfully)
  3. Edit mode (Assert that a repeat field with instances is properly initialised (hydrated) as expected)

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.

2 participants