We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ff360 commit 49c3ea7Copy full SHA for 49c3ea7
1 file changed
packages/ui/client/composables/client/index.ts
@@ -115,13 +115,15 @@ function clearResults(useFiles: RunnerTestFile[]) {
115
const task = map.get(i.id)
116
if (task) {
117
task.state = undefined
118
+ task.mode = 'run'
119
task.duration = undefined
120
}
121
122
})
123
const file = map.get(f.id)
124
if (file) {
125
file.state = undefined
126
+ file.mode = 'run'
127
file.duration = undefined
128
if (isFileNode(file)) {
129
file.collectDuration = undefined
0 commit comments