Skip to content

Commit 1f0acfc

Browse files
committed
Run prettier.
1 parent 0939223 commit 1f0acfc

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

FastImage.test.js

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ import renderer from 'react-test-renderer'
44
import FastImage from './FastImage.js'
55

66
test('FastImage renders correctly.', () => {
7-
const tree = renderer.create(
8-
<FastImage
9-
source={{
10-
uri: 'https://facebook.github.io/react/img/logo_og.png',
11-
headers: {
12-
token: 'someToken',
13-
},
14-
priority: FastImage.priority.high,
15-
}}
16-
/>
17-
).toJSON()
7+
const tree = renderer
8+
.create(
9+
<FastImage
10+
source={{
11+
uri: 'https://facebook.github.io/react/img/logo_og.png',
12+
headers: {
13+
token: 'someToken',
14+
},
15+
priority: FastImage.priority.high,
16+
}}
17+
/>,
18+
)
19+
.toJSON()
1820

1921
expect(tree).toMatchSnapshot()
2022
})

0 commit comments

Comments
 (0)