2019-08-23 15:20:22 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
|
|
|
*
|
|
|
|
* This is free software, licensed under the GNU General Public License v3.
|
|
|
|
* See /LICENSE for more information.
|
|
|
|
*/
|
|
|
|
|
2019-08-27 11:54:57 +02:00
|
|
|
import mockAxios from 'jest-mock-axios';
|
|
|
|
import moment from 'moment-timezone';
|
2019-08-23 15:20:22 +02:00
|
|
|
|
2019-08-27 11:54:57 +02:00
|
|
|
// Setup axios cleanup
|
|
|
|
global.afterEach(() => {
|
|
|
|
mockAxios.reset();
|
|
|
|
});
|
2019-08-23 15:20:22 +02:00
|
|
|
|
2019-08-27 11:54:57 +02:00
|
|
|
// Mock babel (gettext)
|
|
|
|
global._ = str => str;
|
2019-10-30 17:06:53 +01:00
|
|
|
global.ngettext = str => str;
|
2019-08-27 11:54:57 +02:00
|
|
|
global.babel = {format: (str) => str};
|
|
|
|
global.ForisTranslations = {};
|
2019-08-23 15:20:22 +02:00
|
|
|
|
2019-10-30 17:06:53 +01:00
|
|
|
// Mock web sockets
|
|
|
|
window.WebSocket = jest.fn();
|
|
|
|
|
2019-08-27 11:54:57 +02:00
|
|
|
// Mock scrollIntoView
|
2019-10-30 17:06:53 +01:00
|
|
|
global.HTMLElement.prototype.scrollIntoView = () => {};
|
2019-08-23 15:20:22 +02:00
|
|
|
|
2019-08-27 11:54:57 +02:00
|
|
|
jest.doMock('moment', () => {
|
|
|
|
moment.tz.setDefault('UTC');
|
|
|
|
return moment;
|
|
|
|
});
|
2019-08-23 15:20:22 +02:00
|
|
|
|
2019-08-27 11:54:57 +02:00
|
|
|
Date.now = jest.fn(() => new Date(Date.UTC(2019, 1, 1, 12, 13, 14)).valueOf());
|