forked from upfrontjs/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupTests.ts
28 lines (24 loc) · 1.12 KB
/
setupTests.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import GlobalConfig from '../src/Support/GlobalConfig';
import type Configuration from '../src/Contracts/Configuration';
// for some reason global.Promise not found when referenced within node-fetch
global.Promise = globalThis.Promise;
// eslint-disable-next-line @typescript-eslint/no-redeclare
import fetch, { Response, Headers, Request } from 'cross-fetch';
globalThis.fetch = fetch;
globalThis.Response = Response;
globalThis.Headers = Headers;
globalThis.Request = Request;
/* eslint-disable-next-line @typescript-eslint/consistent-generic-constructors */
export const config: GlobalConfig<Configuration> = new GlobalConfig;
/* eslint-disable jest/require-hook */
export const now = new Date(jest.getRealSystemTime());
jest.useFakeTimers({ now });
config.set('baseEndPoint', 'https://test-api-endpoint.com');
/* eslint-enable jest/require-hook */
// eslint-disable-next-line jest/require-top-level-describe
beforeEach(() => {
config.reset();
config.set('baseEndPoint', 'https://test-api-endpoint.com');
// set back to now as some test suites might update this
jest.setSystemTime(now);
});