We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ea5db commit fc3d02eCopy full SHA for fc3d02e
docs/testExamples.js
@@ -166,7 +166,7 @@ async function testAllExamples() {
166
console.log(`${colors.blue}Testing Decimal examples...${colors.reset}\n`);
167
168
const files = await fs.readdir(__dirname);
169
- const mdFiles = files.filter(f => f.endsWith('.md'));
+ const mdFiles = files.filter(f => f.endsWith('.md') && !f.startsWith('.') && !f.endsWith('~') && !(f.startsWith('#') && f.endsWith('#')));
170
171
let totalBlocks = 0;
172
let passedBlocks = 0;
0 commit comments