Skip to content

Commit 581030e

Browse files
authoredFeb 16, 2024··
fix(ui): fix tests duration time (#5219)
1 parent 2ef5e3f commit 581030e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎packages/ui/client/composables/summary.ts

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ export const time = computed(() => {
3737
acc += Math.max(0, t.collectDuration || 0)
3838
acc += Math.max(0, t.setupDuration || 0)
3939
acc += Math.max(0, t.result?.duration || 0)
40+
acc += Math.max(0, t.environmentLoad || 0)
41+
acc += Math.max(0, t.prepareDuration || 0)
4042
return acc
4143
}, 0)
4244

0 commit comments

Comments
 (0)
Please sign in to comment.