• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Freegle / iznik-nuxt3 / 99e3f760-c611-4bfd-88c0-b43b43faaba6

05 Dec 2025 11:02PM UTC coverage: 42.545% (+0.4%) from 42.1%
99e3f760-c611-4bfd-88c0-b43b43faaba6

push

circleci

actions-user
Auto-merge production to app-ci-fd (daily scheduled)

Automated merge from production branch after successful tests.

🤖 Automated by GitHub Actions

1890 of 4798 branches covered (39.39%)

Branch coverage included in aggregate %.

1 of 3 new or added lines in 1 file covered. (33.33%)

305 existing lines in 20 files now uncovered.

2376 of 5229 relevant lines covered (45.44%)

31.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/components/MessageTextBody.vue
1
<template>
2
  <div>
3
    <Highlighter
4
      v-if="message.matchedon"
×
5
      :search-words="[message.matchedon.word]"
6
      :text-to-highlight="message.textbody"
7
      highlight-class-name="highlight"
8
      auto-escape
9
      class="prewrap"
10
    />
11
    <span v-else class="prewrap forcebreak font-weight-bold">{{
12
      safeBody
13
    }}</span>
14
  </div>
15
</template>
16
<script setup>
17
import { computed } from 'vue'
18
import Highlighter from 'vue-highlight-words'
19
import { twem } from '~/composables/useTwem'
20
import { useMessageStore } from '~/stores/message'
21

UNCOV
22
const props = defineProps({
×
23
  id: {
24
    type: Number,
25
    required: true,
26
  },
27
})
28

UNCOV
29
const messageStore = useMessageStore()
×
30

UNCOV
31
const message = computed(() => {
×
UNCOV
32
  return messageStore?.byId(props.id)
×
33
})
34

UNCOV
35
const safeBody = computed(() => {
×
UNCOV
36
  return twem(message.value.textbody)
×
37
})
38
</script>
39
<style scoped lang="scss">
40
.highlight {
41
  color: $color-orange--dark;
42
  background-color: initial;
43
  padding: 0;
44
}
45
</style>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc