RN: Unnecessary $FlowFixMe for jest.now() (#51665)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51665

This type suppression comment is no longer necessary.

Changelog:
[Internal]

Reviewed By: SamChou19815

Differential Revision: D75546017

fbshipit-source-id: 8c1f6a4260f0ca83bcba200bf550746270578534
This commit is contained in:
Tim Yung
2025-05-28 17:24:01 -07:00
committed by Facebook GitHub Bot
parent 98872a1b09
commit b654417afd
-1
View File
@@ -77,7 +77,6 @@ Object.defineProperties(global, {
configurable: true,
enumerable: true,
value(callback: number => void): TimeoutID {
// $FlowFixMe[prop-missing] - JestObjectType is incomplete.
return setTimeout(() => callback(jest.now()), 0);
},
writable: true,