Account for differences between VSCode jest and regular jest (opps!)

pull/1240/head
Rick Carlino 2019-06-21 08:23:36 -05:00
parent 1f886db4ee
commit 059b4c61f0
1 changed files with 1 additions and 3 deletions

View File

@ -12,9 +12,7 @@ jest.mock("../../i18n", () => ({
}));
jest.mock("i18next", () => ({
default: {
init: jest.fn((_: {}, fn: Function) => fn())
}
init: jest.fn((_: {}, fn: Function) => fn())
}));
import { stopIE } from "../../util/stop_ie";