diff --git a/frontend/src/components/AnalysisView/SectionBox.vue b/frontend/src/components/AnalysisView/SectionBox.vue
index c7b840f3..35f1c5e2 100644
--- a/frontend/src/components/AnalysisView/SectionBox.vue
+++ b/frontend/src/components/AnalysisView/SectionBox.vue
@@ -50,6 +50,7 @@
+
+
diff --git a/frontend/test/components/AnalysisView/SupportingEvidence.spec.js b/frontend/test/components/AnalysisView/SupportingEvidence.spec.js
new file mode 100644
index 00000000..fc0bebca
--- /dev/null
+++ b/frontend/test/components/AnalysisView/SupportingEvidence.spec.js
@@ -0,0 +1,41 @@
+import {describe, it, beforeEach, expect} from 'vitest';
+import {shallowMount} from '@vue/test-utils';
+
+import SupplementalFormList from '@/components/AnalysisView/SupportingEvidence.vue';
+import {FontAwesomeIcon} from '@fortawesome/vue-fontawesome';
+
+/**
+ * Helper mounts and returns the rendered component
+ * @param {props} props props for testing to overwrite default props
+ * @return {VueWrapper} returns a shallow mounted using props
+ */
+function getMountedComponent(props) {
+ const defaultPropsData = {
+ field: "Vetrinary Pathology Report",
+ value: [{
+ "name": "CPAM0046-NM_170707.3 (LMNA)_ c.745C_T (p.R249W) other 2.PDF",
+ "attachment_id": "64dbcfa43d243bf1e782499f",
+ "type": "file",
+ "comments": ""
+ } ]
+ };
+
+ return shallowMount(SupplementalFormList, {
+ props: {...defaultPropsData, ...props},
+ global: {
+ components: {
+ 'font-awesome-icon': FontAwesomeIcon,
+ },
+ },
+ });
+}
+
+describe('SupportingEvidence.vue', () => {
+ let wrapper;
+
+ it('renders the supporting evidence when the value exists', async () => {
+ wrapper = getMountedComponent();
+
+ expect(wrapper.html()).to.include('CPAM0046');
+ });
+});