You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { createTestDB } from './utils_for_tests/analytic_units';
|
|
|
|
import { clearSegmentsDB } from './utils_for_tests/segments';
|
|
|
|
|
|
|
|
console.log = jest.fn();
|
|
|
|
console.error = jest.fn();
|
|
|
|
|
|
|
|
jest.mock('../src/config.ts', () => ({
|
|
|
|
DATA_PATH: 'fake-data-path',
|
|
|
|
HASTIC_API_KEY: 'fake-key',
|
|
|
|
ZMQ_IPC_PATH: 'fake-zmq-path',
|
|
|
|
HASTIC_DB_CONNECTION_TYPE: 'nedb',
|
|
|
|
HASTIC_IN_MEMORY_PERSISTANCE: true
|
|
|
|
}));
|
|
|
|
|
|
|
|
jest.mock('deasync', () => ({ loopWhile: jest.fn() }));
|
|
|
|
|
|
|
|
clearSegmentsDB();
|
|
|
|
createTestDB();
|