Skip to content

Commit ec77790

Browse files
committed
prevent ENFILE: file table overflow during test runs
1 parent 92f8f72 commit ec77790

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

tests/meta/repository-references.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,13 @@ describe('check for repository references', () => {
5757
'lib/excluded-links.js',
5858
'content/early-access',
5959
'data/early-access',
60-
'data/release-notes' // These include links to internal issues in Liquid comments
60+
'data/release-notes', // These include links to internal issues in Liquid comments.
61+
'**/*.png', // Do not check images or font files.
62+
'**/*.jpg', // We could just put all of assets/* here, but that would prevent any
63+
'**/*.gif', // READMEs or other text-based files from being checked.
64+
'**/*.pdf',
65+
'**/*.ico',
66+
'**/*.woff',
6167
]
6268
})
6369

0 commit comments

Comments
 (0)