Skip to content

Commit

Permalink
fix(ui): fix tests duration time (#5219)
Browse files Browse the repository at this point in the history
  • Loading branch information
vovsemenv committed Feb 16, 2024
1 parent 2ef5e3f commit 581030e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/ui/client/composables/summary.ts
Expand Up @@ -37,6 +37,8 @@ export const time = computed(() => {
acc += Math.max(0, t.collectDuration || 0)
acc += Math.max(0, t.setupDuration || 0)
acc += Math.max(0, t.result?.duration || 0)
acc += Math.max(0, t.environmentLoad || 0)
acc += Math.max(0, t.prepareDuration || 0)
return acc
}, 0)

Expand Down

0 comments on commit 581030e

Please sign in to comment.