diff --git a/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap b/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap index bee18f10..eb50cb6b 100644 --- a/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap +++ b/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap @@ -132,6 +132,17 @@ exports[`components/Image prop "draggable" 1`] = ` `; +exports[`components/Image prop "nativeID" 1`] = ` +
+
+
+`; + exports[`components/Image prop "resizeMode" value "contain" 1`] = `
{ expect(container.firstChild).toMatchSnapshot(); }); + test('prop "nativeID"', () => { + const { container } = render(); + expect(container.firstChild).toMatchSnapshot(); + }); + describe('prop "onLoad"', () => { test('is called after image is loaded from network', () => { jest.useFakeTimers();