Compare commits

...

7 Commits

Author SHA1 Message Date
edX requirements bot
ee3e4733ff chore: update browserslist DB (#561)
Co-authored-by: jansenk <1639231+jansenk@users.noreply.github.com>
2026-03-16 00:43:39 +00:00
edX requirements bot
c442df7c6d chore: update browserslist DB (#560)
Co-authored-by: jansenk <1639231+jansenk@users.noreply.github.com>
2026-03-09 00:38:37 +00:00
edX requirements bot
b7f387c45e chore: update browserslist DB (#558)
Co-authored-by: jansenk <1639231+jansenk@users.noreply.github.com>
2026-03-02 00:45:21 +00:00
edX requirements bot
966d7dc849 chore: update browserslist DB (#554)
Co-authored-by: jansenk <1639231+jansenk@users.noreply.github.com>
2026-02-23 19:21:23 +00:00
edX requirements bot
606d5ce631 chore: update browserslist DB (#551)
Co-authored-by: jansenk <1639231+jansenk@users.noreply.github.com>
2026-02-16 00:42:04 +00:00
Brian Smith
f48db33355 fix(deps): regenerate package-lock.json (#547)
* fix(deps): regenerate package-lock.json

Co-Authored-By: Claude Code <noreply@anthropic.com>

* fix(tests): update toast test for Paragon v23 changes

Paragon removed the redundant "alert" role from the toast container in
openedx/paragon#3434 (landed via openedx/paragon#3567). Updated test to
find the container using document.getElementById instead.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Code <noreply@anthropic.com>
2026-02-13 17:26:35 -05:00
edX requirements bot
8f9c5f4247 chore: update browserslist DB (#549)
Co-authored-by: jansenk <1639231+jansenk@users.noreply.github.com>
2026-02-09 00:39:16 +00:00
2 changed files with 3297 additions and 1832 deletions

5122
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -40,8 +40,11 @@ describe('ImportSuccessToast', () => {
});
render(<ImportSuccessToast />);
const alert = screen.getByRole('alert');
expect(alert).toBeInTheDocument();
const toastRoot = document.getElementById('toast-root');
expect(toastRoot).toBeInTheDocument();
expect(toastRoot).toHaveClass('toast-container');
const toastMessage = screen.queryByText('Import Successful! Grades will be updated momentarily.');
expect(toastMessage).toBeNull();
expect(useImportSuccessToastData).toHaveBeenCalled();