enzyme -> RTL: convert the Wizard component suite - #473
Merged
Conversation
Migrate components/Wizard off enzyme onto renderWithContexts (React Testing Library). The PF Wizard step content is asserted in its body portal; behaviour and assertions are preserved.
Contributor
There was a problem hiding this comment.
Pull request overview
Migrates the Wizard component’s unit test from Enzyme to React Testing Library (RTL), aligning with the ongoing UI test migration strategy and using the shared renderWithContexts helper for consistent provider setup.
Changes:
- Replaced Enzyme
mountusage with RTLrenderWithContextsfor rendering. - Updated assertions to validate Wizard step content and the step’s navigation entry via DOM queries.
cigamit
approved these changes
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SUMMARY
Converts the Wizard component test suite (
components/Wizard) from enzyme to React Testing Library, continuing the enzyme → RTL migration (components, one directory per PR).Wizard.test.jsmigrated off enzyme ontorenderWithContexts: the PF Wizard step content/nav is asserted in the rendered DOM (the step label renders in nav + content, so the content paragraph is scoped). Behaviour and assertions are preserved.ISSUE TYPE
COMPONENT NAME
ADDITIONAL INFORMATION
npm testforcomponents/Wizard: all passing. ESLint clean (--no-ignore). No production code changed — test-only.