Clear mocked methods after each test to prevent overlaps with other tests.

This commit is contained in:
Kia Lam
2019-03-14 10:41:28 -04:00
parent 518ecee53e
commit a5683fb354

View File

@@ -26,6 +26,10 @@ const mockData = [
]; ];
describe('<OrganizationAccessList />', () => { describe('<OrganizationAccessList />', () => {
afterEach(() => {
jest.restoreAllMocks();
});
test('initially renders succesfully', () => { test('initially renders succesfully', () => {
mount( mount(
<I18nProvider> <I18nProvider>