react-native/Libraries/Image/__tests__/__snapshots__/assetRelativePathInSnapshot-test.js.snap
Rubén Norte ffa9036252 jest: rename tests to follow the new convention
Summary:
Renamed test files to match `-test.js`, so people can add test helpers without blacklisting.

Codemod code: P60365841

Script executed:

```
cd xplat/js
./scripts/node/node rename-script.js > result.txt
```

Reviewed By: mjesun

Differential Revision: D13185673

fbshipit-source-id: 87451635aa538c2c1d1886e75574d0e5c889596e
2018-11-26 10:30:12 -08:00

21 lines
357 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders assets based on relative path 1`] = `
<View>
<Image
source={
Object {
"testUri": "../Libraries/Image/__tests__/img/img1.png",
}
}
/>
<Image
source={
Object {
"testUri": "../Libraries/Image/__tests__/img/img2.png",
}
}
/>
</View>
`;