Skip to content

Commit

Permalink
supress flow errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 7, 2019
1 parent ae06d6a commit defffa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/jest-circus/src/formatNodeAssertErrors.js
Expand Up @@ -7,6 +7,7 @@
* @flow strict-local
*/

// $FlowFixMe: Converted to TS. It's also not exported, but should be imported from `matcher-utils`
import type {DiffOptions} from 'jest-diff/src/diffStrings';
import type {Event, State} from 'types/Circus';

Expand Down
3 changes: 2 additions & 1 deletion packages/jest-jasmine2/src/assertionErrorMessage.js
Expand Up @@ -7,7 +7,8 @@
* @flow
*/

import type {DiffOptions} from 'jest-diff/src/diffStrings';
// $FlowFixMe: Converted to TS. It's also not exported, but should be imported from `matcher-utils`
import type {DiffOptions} from 'jest-diff';

import {diff, printReceived, printExpected} from 'jest-matcher-utils';
import chalk from 'chalk';
Expand Down

0 comments on commit defffa7

Please sign in to comment.