-
Notifications
You must be signed in to change notification settings - Fork 63
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
chore(deps): update paragon and frontend-build to openedx scope #666
chore(deps): update paragon and frontend-build to openedx scope #666
Conversation
140f38f
to
2264354
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #666 +/- ##
=======================================
Coverage 92.82% 92.82%
=======================================
Files 158 158
Lines 3331 3331
Branches 919 919
=======================================
Hits 3092 3092
Misses 219 219
Partials 20 20 ☔ View full report in Codecov by Sentry. |
await waitFor(async () => { | ||
const stats = await sectionGroups[index].querySelectorAll('.icon-size:not([data-testid="subsection-group"].icon-size)'); | ||
const subsectionGroups = await within(sectionGroups[index]).getAllByTestId('subsection-group'); | ||
|
||
expect(within(sectionGroups[index]).queryByText(topic.displayName)).toBeInTheDocument(); | ||
expect(stats).toHaveLength(0); | ||
expect(subsectionGroups).toHaveLength(2); | ||
expect(within(sectionGroups[index]).queryByText(topic.displayName)).toBeInTheDocument(); | ||
expect(stats).toHaveLength(0); | ||
expect(subsectionGroups).toHaveLength(2); | ||
}); |
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 is the only non-package.json
, non-find-and-replace-@edx
-with-@openedx
, non lint --fix
change. The only difference is that the body of this forEach
loop is now wrapped in waitFor
.
it looks like this is likely a dupe of #657 |
2264354
to
e010d1e
Compare
This is now required for Tutor dev mode to work (see overhangio/tutor-mfe#193). Should we merge this one or #657? |
Looks like CI is failing on 657, I'll rebase this and see if it passes. |
e010d1e
to
421ced1
Compare
@brian-smith-tcril @arbrandes This PR change has broken the stage and production pipeline for discussion MFE. |
@awais-ansari it looks like you need to:
the |
@brian-smith-tcril Thanks for quick response. We have made some changes in internal and now build is green. |
No description provided.