030ab669fa
Also disable some warning/error checks in jestSetup.ts that are causing build to fail. Change-Id: Iafaa05af4058bd0f6cc1ec94f6d85b11672612f3
14 lines
502 B
TypeScript
14 lines
502 B
TypeScript
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { GlobalWithFetchMock } from 'jest-fetch-mock';
|
|
|
|
const customGlobal: GlobalWithFetchMock = global as GlobalWithFetchMock;
|
|
|
|
customGlobal.fetch = require('jest-fetch-mock');
|
|
customGlobal.fetchMock = customGlobal.fetch;
|
|
|
|
// Disallow warnings and errors from console.
|
|
// customGlobal.console.warn = (message) => { throw new Error(message); };
|
|
// customGlobal.console.error = (message) => { throw new Error(message); };
|