mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
1262021417
Adds maplibre as a dependency, and behind a labs flag, lets users send and receive [MSC3488](https://github.com/matrix-org/matrix-doc/blob/matthew/location/proposals/3488-location.md) style location shares - with backwards compatibility with old school `m.location` `msgtype` location shares too. For this to work, you have to define a valid maptile server and API in your config.json's `map_style_url`.
19 lines
658 B
JavaScript
19 lines
658 B
JavaScript
import * as languageHandler from "../src/languageHandler";
|
|
import { TextEncoder, TextDecoder } from 'util';
|
|
import Adapter from "@wojtekmaj/enzyme-adapter-react-17";
|
|
import { configure } from "enzyme";
|
|
|
|
languageHandler.setLanguage('en');
|
|
languageHandler.setMissingEntryGenerator(key => key.split("|", 2)[1]);
|
|
|
|
require('jest-fetch-mock').enableMocks();
|
|
|
|
// polyfilling TextEncoder as it is not available on JSDOM
|
|
// view https://github.com/facebook/jest/issues/9983
|
|
global.TextEncoder = TextEncoder;
|
|
global.TextDecoder = TextDecoder;
|
|
|
|
configure({ adapter: new Adapter() });
|
|
|
|
// maplibre requires a createObjectURL mock
|
|
global.URL.createObjectURL = jest.fn();
|