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.
|
console.log = jest.fn(); |
|
console.error = jest.fn(); |
|
|
|
jest.mock('../src/config.ts', () => ({ |
|
HASTIC_API_KEY: 'fake-key', |
|
DATA_PATH: 'fake-data-path', |
|
ZMQ_IPC_PATH: 'fake-zmq-path' |
|
}));
|
|
|