mirror of
https://github.com/status-im/react-native.git
synced 2025-02-24 23:28:12 +00:00
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
21 lines
357 B
Plaintext
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>
|
|
`;
|