diff --git a/src/components/InvertedFlatList/BaseInvertedFlatList/index.e2e.tsx b/src/components/InvertedFlatList/BaseInvertedFlatList/index.e2e.tsx index 5df39ec02c89..8bc6868f5a6d 100644 --- a/src/components/InvertedFlatList/BaseInvertedFlatList/index.e2e.tsx +++ b/src/components/InvertedFlatList/BaseInvertedFlatList/index.e2e.tsx @@ -10,14 +10,16 @@ type BaseInvertedFlatListProps = FlatListProps & { const AUTOSCROLL_TO_TOP_THRESHOLD = 128; let localViewableItems: ViewToken[]; -const getViewableItems = () => localViewableItems; +const getViewableItems = () => console.log(787878798792) || localViewableItems; function BaseInvertedFlatListE2e(props: BaseInvertedFlatListProps, ref: React.ForwardedRef>) { const {shouldEnableAutoScrollToTopThreshold, ...rest} = props; + console.log("BaseInvertedFlatListE2e"); const handleViewableItemsChanged = useMemo( () => ({viewableItems}: {viewableItems: ViewToken[]}) => { + console.log("handleViewableItemsChanged", {viewableItems}); localViewableItems = viewableItems; }, [], diff --git a/src/libs/E2E/tests/linkingTest.e2e.ts b/src/libs/E2E/tests/linkingTest.e2e.ts index c48ffb5a8057..bd2c1c90764c 100644 --- a/src/libs/E2E/tests/linkingTest.e2e.ts +++ b/src/libs/E2E/tests/linkingTest.e2e.ts @@ -18,6 +18,8 @@ const test = (config: NativeConfig) => { const linkedReportID = getConfigValueOrThrow('linkedReportID', config); const linkedReportActionID = getConfigValueOrThrow('linkedReportActionID', config); + console.log({linkedReportActionID}); + E2ELogin().then((neededLogin) => { if (neededLogin) { return waitForAppLoaded().then(() => E2EClient.submitTestDone()); @@ -59,7 +61,7 @@ const test = (config: NativeConfig) => { console.debug('[E2E] Error while submitting test results:', err); }); } else { - console.debug('[E2E] Message verification failed'); + console.debug('[E2E] Message verification failed', res, linkedReportActionID); } }, 3000); }