Initial Playwright ERP UAT VAPT test suite v2.4.1 IMAP

This commit is contained in:
A R R R Associates
2026-06-22 12:52:00 +05:30
parent 970d5df926
commit 865f19cb84
29 changed files with 26786 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
const fs = require('fs');
const rows = JSON.parse(fs.readFileSync('data/checklist-rows.json','utf8'));
const vars = JSON.parse(fs.readFileSync('data/generated-test-matrix.json','utf8'));
const bySheet = {};
for (const r of rows) bySheet[r.Sheet] = (bySheet[r.Sheet] || 0) + 1;
console.log('Source Excel rows:', rows.length);
console.log('Generated variants:', vars.length);
console.log('Automated variants:', vars.filter(v=>v.automation==='automated').length);
console.log('Manual variants:', vars.filter(v=>v.automation==='manual').length);
console.table(bySheet);