Not sure what you mean by that. But, the "valid" test link for YR is https://valid.yr.test-certs.letsencrypt.org/
That sends a leaf and the single intermediate leading to Root YR. That request will fail validation unless you have Root YR in your trusted store. Getting YR and YE into trusted stores is in process. You need to know what the test is designed to do in various circumstances.
Browsers are poor ways to check what a server sends because they work very hard to show a "clean" page to the user if they can build the needed trust chain themselves. They do this with caches and possibly preloaded intermediates. Even some cert test sites will do this.
A better way to check a chain is with openssl. Or even curl.
echo|openssl s_client -connect valid.yr.test-certs.letsencrypt.org:443
CONNECTED(00000003)
depth=1 C = US, O = Let's Encrypt, CN = YR2
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=0
verify return:1
---
Certificate chain
0 s:
i:C = US, O = Let's Encrypt, CN = YR2
a:PKEY: rsaEncryption, 2048 (bit); sigalg: RSA-SHA256
v:NotBefore: Jun 3 10:55:00 2026 GMT; NotAfter: Jun 10 02:54:59 2026 GMT
1 s:C = US, O = Let's Encrypt, CN = YR2
i:C = US, O = ISRG, CN = Root YR
a:PKEY: rsaEncryption, 2048 (bit); sigalg: RSA-SHA256
v:NotBefore: Sep 3 00:00:00 2025 GMT; NotAfter: Sep 2 23:59:59 2028 GMT
And, the example "expired" test link gives this:
echo|openssl s_client expired.yr.test-certs.letsencrypt.org:443
CONNECTED(00000003)
depth=1 C = US, O = Let's Encrypt, CN = YR2
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=0
verify error:num=10:certificate has expired
notAfter=May 27 22:44:36 2026 GMT
verify return:1
depth=0
notAfter=May 27 22:44:36 2026 GMT
verify return:1
---
Certificate chain
0 s:
i:C = US, O = Let's Encrypt, CN = YR2
a:PKEY: rsaEncryption, 2048 (bit); sigalg: RSA-SHA256
v:NotBefore: May 21 06:44:37 2026 GMT; NotAfter: May 27 22:44:36 2026 GMT
1 s:C = US, O = Let's Encrypt, CN = YR2
i:C = US, O = ISRG, CN = Root YR
a:PKEY: rsaEncryption, 2048 (bit); sigalg: RSA-SHA256
v:NotBefore: Sep 3 00:00:00 2025 GMT; NotAfter: Sep 2 23:59:59 2028 GMT
In this case if YR was in the trusted root store of my system the validation would still fail because of the expired cert.