We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
vitest-dev
sheremet-va
antfu
patak-dev
Learn more about funding links in repositories.
Report abuse
1 parent 8d3cf9d commit bc283aeCopy full SHA for bc283ae
packages/ui/client/components/Navigation.vue
@@ -32,7 +32,7 @@ async function onRunAll(files?: File[]) {
32
if (coverageEnabled.value) {
33
disableCoverage.value = true
34
await nextTick()
35
- if (coverageEnabled.value) {
+ if (coverageVisible.value) {
36
showDashboard(true)
37
38
}
@@ -94,7 +94,7 @@ async function onRunAll(files?: File[]) {
94
v-tooltip.bottom="filteredTests ? (filteredTests.length === 0 ? 'No test to run (clear filter)' : 'Rerun filtered') : 'Rerun all'"
95
:disabled="filteredTests?.length === 0"
96
icon="i-carbon:play"
97
- @click="runAll(filteredTests)"
+ @click="onRunAll(filteredTests)"
98
/>
99
<IconButton
100
v-tooltip.bottom="`Toggle to ${toggleMode} mode`"
0 commit comments