Combined PR (#197)
[e-mobility-charging-stations-simulator.git] / src / ui / web / tests / unit / CSTable.spec.ts
index 570c9f1fb066f675c139820b7be54952a7a241a2..6b13495ae3422a9209f7d6a77923e4316d8838bb 100644 (file)
@@ -5,9 +5,7 @@ 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,
-    };
+    const chargingStations: ChargingStationData[] = [];
     const wrapper = shallowMount(CSTable, {
       props: { chargingStations, idTag: '0' },
     });