Skip to content

Commit f00d303

Browse files
authored
fix: argo ci flakeyness (#203)
1 parent 381d49a commit f00d303

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/components/pages/about/code-contributors/code-contributor-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const CodeContributorList = () => {
2626
}, []);
2727

2828
return (
29-
<div className={'flex flex-wrap gap-3'}>
29+
<div className={'flex flex-wrap gap-3 agos-ignore'}>
3030
{contributors.map((contributor: Contributor) => (
3131
<div className={'flex flex-col items-center w-24'}>
3232
<img

src/components/pages/about/translations-contributors/translation-constributor-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const TranslationContributorList = () => {
1616
}, []);
1717

1818
return (
19-
<div className={'flex flex-wrap gap-3'}>
19+
<div className={'flex flex-wrap gap-3 agos-ignore'}>
2020
{contributors.map((contributor: Contributor) => (
2121
<div className={'flex flex-col items-center w-24'}>
2222
<img

tests/screenshot.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ img[src$='.gif'],
1515
/* Asynchronous loading images (eg. Discord server widget) */
1616
img[decoding="async"],
1717
/* Video is animated */
18-
video {
18+
video,
19+
/* Elements that should be ignored from Argos */
20+
.agos-ignore {
1921
visibility: hidden !important;
2022
}
2123

0 commit comments

Comments
 (0)