-
Notifications
You must be signed in to change notification settings - Fork 24.7k
RNTester: Fix playground icon & test details button #50530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
950bd7c
ddd2838
ebc70fc
5a0d25b
271efb6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Unchanged files with check annotations Beta
fromEnc: buffer$Encoding, | ||
toEnc: buffer$Encoding, | ||
): Node$Buffer; | ||
declare var Buffer: Node$Buffer; | ||
Check warning on line 200 in flow-typed/environment/node.js
|
||
} | ||
type child_process$execOpts = { |
// Modifications are explained inline by comments beginning with `// MODIFIED`. | ||
// MODIFIED: Added ESLint suppression comment - no-unused-vars doesn't understand declaration files | ||
/* eslint-disable no-unused-vars */ | ||
Check warning on line 15 in flow-typed/npm/jest.js
|
||
type JestMockFn<TArguments: $ReadOnlyArray<mixed>, TReturn> = { | ||
(...args: TArguments): TReturn, |
return assets[assetId - 1]; | ||
} | ||
module.exports = {registerAsset, getAssetByID}; | ||
Check warning on line 43 in packages/assets/registry.js
|
const debug = require('debug')('Metro:InspectorProxy'); | ||
const PAGES_POLLING_INTERVAL = 1000; | ||
const MIN_MESSAGE_QUEUE_BYTES_TO_REPORT = 2 * 1024 * 1024; // 2 MiB | ||
Check warning on line 40 in packages/dev-middleware/src/inspector-proxy/Device.js
|
||
const WS_CLOSURE_CODE = { | ||
NORMAL: 1000, |
'use client'; | ||
/* eslint-disable no-shadow, eqeqeq, curly, no-unused-vars, no-void, no-control-regex */ | ||
Check warning on line 14 in packages/polyfills/console.js
|
||
/** | ||
* This pipes all of our console logging functions to native logging so that |
nativeTypeDiffingTypesAliases, | ||
nativeTypeDiffingTypesMethodParamLookup, | ||
nativeTypeDiffingTypesMethodLookup, | ||
_, | ||
Check warning on line 85 in packages/react-native-compatibility-check/src/__tests__/TypeDiffing-test.js
|
||
nativeTypeDiffingTypesEnums, | ||
] = getModule( | ||
'native-module-type-diffing-types', |
import type AnimatedValue from '../nodes/AnimatedValue'; | ||
import NativeAnimatedHelper from '../../../src/private/animated/NativeAnimatedHelper'; | ||
import * as ReactNativeFeatureFlags from '../../../src/private/featureflags/ReactNativeFeatureFlags'; | ||
Check warning on line 16 in packages/react-native/Libraries/Animated/animations/Animation.js
|
||
import AnimatedProps from '../nodes/AnimatedProps'; | ||
export type EndResult = {finished: boolean, value?: number, ...}; |
* transform which can receive values from multiple parents. | ||
*/ | ||
export function flushValue(rootNode: AnimatedNode): void { | ||
// eslint-disable-next-line func-call-spacing | ||
Check warning on line 55 in packages/react-native/Libraries/Animated/nodes/AnimatedValue.js
|
||
const leaves = new Set<{update: () => void, ...}>(); | ||
function findAnimatedStyles(node: AnimatedNode) { | ||
// $FlowFixMe[prop-missing] |
remoteModuleConfig: remoteModulesConfig, | ||
}; | ||
module.exports = MessageQueueTestConfig; | ||
Check warning on line 38 in packages/react-native/Libraries/BatchedBridge/__mocks__/MessageQueueTestConfig.js
|
testHook2: function () {}, | ||
}; | ||
module.exports = MessageQueueTestModule; | ||
Check warning on line 22 in packages/react-native/Libraries/BatchedBridge/__mocks__/MessageQueueTestModule.js
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice :)