Initial Playwright ERP UAT VAPT test suite v2.4.1 IMAP
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user