parent
526fae3ace
commit
0ac6409d11
@ -0,0 +1,15 @@ |
||||
const testFolder = './apps/remix-ide-e2e/src/tests/' |
||||
const fs = require('fs') |
||||
|
||||
fs.readdirSync(testFolder).forEach(file => { |
||||
if (!file.includes('group')) { |
||||
const content = fs.readFileSync(testFolder + file, 'utf8') |
||||
const matches = content.match(/group\d+/g) |
||||
if (matches) { |
||||
const disabled = content.includes('@disabled') |
||||
if (!disabled) { |
||||
console.log(`WARNING ${file} has group tests but is not disabled`) |
||||
} |
||||
} |
||||
} |
||||
}) |
Loading…
Reference in new issue