Fix bug with init_state_test showing up as blank row in table
This commit is contained in:
parent
9e7ec0fdee
commit
971b6fe26a
1 changed files with 2 additions and 1 deletions
|
|
@ -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 = ""
|
||||
|
|
|
|||
Loading…
Reference in a new issue