Skip to content

Commit

Permalink
Flow strict ScrollViewMock (#22103)
Browse files Browse the repository at this point in the history
Summary:
Related to #22100

Turn Flow strict mode on for ScrollViewMock.
This file used to declare jest var as `any` but jest module is already typed in root flow folder.

Note: I had to use a quick fix for polyfillPromise. See here #22101

- All flow tests succeed.

[GENERAL] [ENHANCEMENT] [ScrollViewMock.js] - Flow strict mode
Pull Request resolved: #22103

Differential Revision: D12918380

Pulled By: TheSavior

fbshipit-source-id: cd3aba47b1a43e76a7da09e15cc2d9cfcdf7f56d
  • Loading branch information
exced authored and facebook-github-bot committed Nov 4, 2018
1 parent cc13a73 commit 499c195
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Libraries/Components/ScrollView/__mocks__/ScrollViewMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
* @flow strict-local
*/

/* eslint-env jest */

'use strict';

declare var jest: any;

const React = require('React');
const View = require('View');

Expand Down

0 comments on commit 499c195

Please sign in to comment.