1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-11-14 17:35:35 +01:00
foris-js/src/testUtils/setup.js

34 lines
832 B
JavaScript
Raw Normal View History

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 };
2020-02-20 14:30:28 +01:00
global.ForisTranslations = { locale: "en" };
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());