https://github.com/Uzwername/jest-coverage-problem-reproduction
npx jest --coverage<template> tag highlighted with yellow.TheDesktopNavigation.vue.Report should show 100% coverage
The <template> tag is highlighted with yellow (which means uncovered branch) while there's only 5 lines of JS with 0 logical branches in the file.
As a side note, other very similar components that follow the same folder/test structure work ok & show 100% coverage.
@Uzwername When replacing your contents within <template> with
<FaIcon :icon="faCaretRight" />
I does show 100% coverage, also for branches.

It seems you have to double check the contents of the <template>
Most helpful comment
@Uzwername When replacing your contents within
<template>with<FaIcon :icon="faCaretRight" />I does show 100% coverage, also for branches.
It seems you have to double check the contents of the
<template>