Skip to content

Commit fc3d02e

Browse files
jessealamaCopilot
andauthored
Update docs/testExamples.js
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent f3ea5db commit fc3d02e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/testExamples.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ async function testAllExamples() {
166166
console.log(`${colors.blue}Testing Decimal examples...${colors.reset}\n`);
167167

168168
const files = await fs.readdir(__dirname);
169-
const mdFiles = files.filter(f => f.endsWith('.md'));
169+
const mdFiles = files.filter(f => f.endsWith('.md') && !f.startsWith('.') && !f.endsWith('~') && !(f.startsWith('#') && f.endsWith('#')));
170170

171171
let totalBlocks = 0;
172172
let passedBlocks = 0;

0 commit comments

Comments
 (0)