mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
In response to [1]. This prevents mocked values leaking between tests [2]. I did try to set 'mockRestore: true' in jest.config, but that means the restore happens before _every_ test, which isn't what we want. [1]: https://github.com/alphagov/notifications-admin/pull/3878#discussion_r631060116 [2]: https://jestjs.io/docs/jest-object#jestrestoreallmocks
7 lines
79 B
JavaScript
7 lines
79 B
JavaScript
window.jQuery = null;
|
|
$ = null;
|
|
|
|
delete window.GOVUK;
|
|
|
|
jest.restoreAllMocks();
|