1ff-chat-ui
Version:
chatbot to communicate with taught ai
16 lines (13 loc) • 314 B
JavaScript
import '@testing-library/jest-dom';
import 'jest-location-mock';
beforeAll(() => {
process.env.HOST = 'https://usa.yourketo.test/';
});
afterEach(() => {
jest.clearAllMocks();
jest.restoreAllMocks();
localStorage.clear();
});
Object.defineProperty(document, 'fonts', {
value: { check: () => true },
})