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.
17 lines
491 B
17 lines
491 B
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', |
|
HASTIC_DB_CONNECTION_TYPE: 'nedb', |
|
HASTIC_IN_MEMORY_PERSISTANCE: true, |
|
HASTIC_ALERT_TYPE: 'webhook', |
|
AlertTypes: jest.requireActual('../src/config').AlertTypes, |
|
})); |
|
|
|
clearSegmentsDB(); |
|
createTestDB();
|
|
|