Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
795b2985fa build(deps): bump lodash and es-check
Bumps [lodash](https://github.com/lodash/lodash) to 4.17.23 and updates ancestor dependency [es-check](https://github.com/yowainwright/es-check). These dependencies need to be updated together.


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

Updates `es-check` from 2.3.0 to 9.5.4
- [Release notes](https://github.com/yowainwright/es-check/releases)
- [Commits](https://github.com/yowainwright/es-check/compare/2.3.0...9.5.4)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
- dependency-name: es-check
  dependency-version: 9.5.4
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-26 00:35:50 +00:00
3 changed files with 1759 additions and 4189 deletions

5939
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -71,7 +71,7 @@
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"es-check": "^2.3.0",
"es-check": "^9.5.4",
"fetch-mock": "^12.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",

View File

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