Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
378 Bytes
import { warnCache } from '../../packages/react-instantsearch-hooks/src/lib/warn';
import { toWarnDev } from './matchers';
expect.extend({ toWarnDev });
// We hide console warnings to not pollute the test logs.
global.console.warn = jest.fn();
beforeEach(() => {
// We reset the log's cache for our log assertions to be isolated in each test.
warnCache.current = {};
});