Skip to content

Commit

Permalink
Migrate jest-each tests to ts;
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips committed Feb 28, 2019
1 parent c0c7c4d commit 3c91a75
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Expand Up @@ -16,7 +16,7 @@ const get = (object, lensPath) =>
lensPath.reduce((acc, key) => acc[key], object);

const getGlobalTestMocks = () => {
const globals = {
const globals: any = {
describe: jest.fn(),
fdescribe: jest.fn(),
fit: jest.fn(),
Expand Down
Expand Up @@ -15,7 +15,7 @@ const get = (object, lensPath) =>
lensPath.reduce((acc, key) => acc[key], object);

const getGlobalTestMocks = () => {
const globals = {
const globals: any = {
describe: jest.fn(),
fdescribe: jest.fn(),
fit: jest.fn(),
Expand Down

0 comments on commit 3c91a75

Please sign in to comment.