Web UI: fix UT
[e-mobility-charging-stations-simulator.git] / src / ui / web / tests / unit / CSTable.spec.ts
index 28da36d7a9bf5ef79454214686e724826a0bf8d7..b6084d9c2c4f010b3f97e24e85577772ff6bd35b 100644 (file)
@@ -1,17 +1,20 @@
 import { expect } from 'chai';
 import { shallowMount } from '@vue/test-utils';
 import CSTable from '@/components/charging-stations/CSTable.vue';
-import type { ChargingStationData } from '@/type/ChargingStationType';
+import type { ChargingStationData } from '@/types/ChargingStationType';
 
 describe('CSTable.vue', () => {
   it('renders CS table columns name', () => {
     const chargingStations: Record<string, ChargingStationData> = {
-      '0': {} as unknown as ChargingStationData,
+      '0': {
+        stationInfo: {
+          hashId: '0',
+        },
+      } as unknown as ChargingStationData,
     };
     const wrapper = shallowMount(CSTable, {
       props: { chargingStations, idTag: '0' },
     });
-    console.log(wrapper.text());
     expect(wrapper.text()).to.include('Action');
     expect(wrapper.text()).to.include('Connector');
     expect(wrapper.text()).to.include('Status');