Fix bug with init_state_test showing up as blank row in table

This commit is contained in:
davidgirdwood1 2025-02-21 16:40:24 -08:00
parent 9e7ec0fdee
commit 971b6fe26a

View file

@ -96,7 +96,8 @@ export function buildResultTestReport(
// Loop through each test type and construct the table rows
for (const [testType, { passed = 0, failed = 0 }] of Object.entries(reportTableDict)) {
if (testType.includes("🎨")) {
// Empty string could indicate the INIT_STATE_TEST, nothing to display
if (testType.includes("🎨") || testType.trim() === '') {
continue
}
let status = ""