Skip to content

Commit 9d5d787

Browse files
committed
Also commit the test page component
1 parent eb681c5 commit 9d5d787

File tree

1 file changed

+5
-5
lines changed
  • test/integration/image-component/basic/pages

1 file changed

+5
-5
lines changed

test/integration/image-component/basic/pages/lazy.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ const Lazy = () => {
88
<p id="stubtext">This is a page with lazy-loaded images</p>
99
<Image
1010
id="lazy-top"
11-
src="foo1.jpg"
11+
src="lazy1.jpg"
1212
height={400}
1313
width={1024}
1414
loading="lazy"
1515
></Image>
1616
<div style={{ height: '2000px' }}></div>
1717
<Image
1818
id="lazy-mid"
19-
src="foo2.jpg"
19+
src="lazy2.jpg"
2020
loading="lazy"
2121
height={400}
2222
width={300}
@@ -25,7 +25,7 @@ const Lazy = () => {
2525
<div style={{ height: '2000px' }}></div>
2626
<Image
2727
id="lazy-bottom"
28-
src="https://www.otherhost.com/foo3.jpg"
28+
src="https://www.otherhost.com/lazy3.jpg"
2929
height={400}
3030
width={300}
3131
unoptimized
@@ -34,14 +34,14 @@ const Lazy = () => {
3434
<div style={{ height: '2000px' }}></div>
3535
<Image
3636
id="lazy-without-attribute"
37-
src="foo4.jpg"
37+
src="lazy4.jpg"
3838
height={400}
3939
width={800}
4040
></Image>
4141
<div style={{ height: '2000px' }}></div>
4242
<Image
4343
id="eager-loading"
44-
src="foo5.jpg"
44+
src="lazy5.jpg"
4545
loading="eager"
4646
height={400}
4747
width={1900}

0 commit comments

Comments
 (0)