Skip to content

Commit

Permalink
Chore: exclude additional code from coverage
Browse files Browse the repository at this point in the history
These files have poor coverage that drags down the overall result, but
will be obsolete soon-ish, so we'll just ignore them for now.

RISDEV-0000
  • Loading branch information
andreasphil committed Dec 18, 2023
1 parent da997f1 commit af8759e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts" setup>
/* v8 ignore start */
import { computed } from "vue"
import DateUndefinedDateInputGroup from "@/components/DateUndefinedDateInputGroup.vue"
import { Metadata, MetadatumType } from "@/domain/norm"
Expand Down Expand Up @@ -66,6 +67,7 @@ const dateSection = computed({
emit("update:modelValue", next)
},
})
/* v8 ignore stop */
</script>

<template>
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/expiration/ExpirationInputGroup.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts" setup>
/* v8 ignore start */
import { computed } from "vue"
import DateUndefinedDateInputGroup from "@/components/DateUndefinedDateInputGroup.vue"
import { Metadata, MetadatumType, UndefinedDate } from "@/domain/norm"
Expand Down Expand Up @@ -66,6 +67,7 @@ const dateSection = computed({
emit("update:modelValue", next)
},
})
/* v8 ignore stop */
</script>

<template>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts" setup>
/* v8 ignore start */
import { computed } from "vue"
import DateUndefinedDateInputGroup from "@/components/DateUndefinedDateInputGroup.vue"
import { Metadata, MetadatumType } from "@/domain/norm"
Expand Down Expand Up @@ -66,6 +67,7 @@ const dateSection = computed({
emit("update:modelValue", next)
},
})
/* v8 ignore stop */
</script>

<template>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts" setup>
/* v8 ignore start */
import { computed } from "vue"
import DateUndefinedDateInputGroup from "@/components/DateUndefinedDateInputGroup.vue"
import { Metadata, MetadatumType } from "@/domain/norm"
Expand Down Expand Up @@ -66,6 +67,7 @@ const dateSection = computed({
emit("update:modelValue", next)
},
})
/* v8 ignore stop */
</script>

<template>
Expand Down

0 comments on commit af8759e

Please sign in to comment.