We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d020e48 commit c5b6ad5Copy full SHA for c5b6ad5
test/detect/index.js
@@ -17,7 +17,8 @@ function testAutoDetection(language, { detectPath }) {
17
const dir = await fs.stat(languagePath);
18
dir.isDirectory().should.be.true();
19
20
- const filenames = await fs.readdir(languagePath);
+ const filenames = (await fs.readdir(languagePath))
21
+ .filter(fn => fn !== '.DS_Store');
22
await Promise.all(filenames
23
.map(async function(example) {
24
const filename = path.join(languagePath, example);
0 commit comments