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.
|
|
|
|
*/
|
|
|
|
|
2020-01-09 11:25:29 +01: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)
|
2020-01-09 11:25:29 +01:00
|
|
|
global._ = (str) => str;
|
|
|
|
global.ngettext = (str) => str;
|
|
|
|
global.babel = { format: (str) => str };
|
2019-08-27 11:54:57 +02:00
|
|
|
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
|
|
|
|
2020-01-09 11:25:29 +01:00
|
|
|
// Mock timezone utilities
|
|
|
|
jest.doMock("moment", () => {
|
|
|
|
moment.tz.setDefault("UTC");
|
2019-08-27 11:54:57 +02:00
|
|
|
return moment;
|
|
|
|
});
|
|
|
|
Date.now = jest.fn(() => new Date(Date.UTC(2019, 1, 1, 12, 13, 14)).valueOf());
|