mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sebastian Malton <sebastian@malton.name>
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import fetchMock from "jest-fetch-mock";
|
|
import configurePackages from "./common/configure-packages";
|
|
import { configure } from "mobx";
|
|
import { setImmediate } from "timers";
|
|
import { TextEncoder, TextDecoder as TextDecoderNode } from "util";
|
|
|
|
// setup default configuration for external npm-packages
|
|
configurePackages();
|
|
|
|
configure({
|
|
// Needed because we want to use jest.spyOn()
|
|
// ref https://github.com/mobxjs/mobx/issues/2784
|
|
safeDescriptors: false,
|
|
});
|
|
|
|
// rewire global.fetch to call 'fetchMock'
|
|
fetchMock.enableMocks();
|
|
|
|
// Mock __non_webpack_require__ for tests
|
|
globalThis.__non_webpack_require__ = jest.fn();
|
|
|
|
global.setImmediate = setImmediate;
|
|
|
|
global.fail = ((error = "Test failed without explicit error") => {
|
|
console.error(error);
|
|
}) as any;
|
|
|
|
process.on("unhandledRejection", (err: any) => {
|
|
global.fail(err);
|
|
});
|
|
|
|
global.TextEncoder = TextEncoder;
|
|
global.TextDecoder = TextDecoderNode as unknown as typeof TextDecoder;
|