10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
|
// Copyright (C) 2019 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
import { GlobalWithFetchMock } from 'jest-fetch-mock';
|
||
|
|
||
|
const customGlobal: GlobalWithFetchMock = global as unknown as GlobalWithFetchMock;
|
||
|
|
||
|
customGlobal.fetch = require('jest-fetch-mock');
|
||
|
customGlobal.fetchMock = customGlobal.fetch;
|