Web UI: fix UT
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 30 Aug 2022 11:04:53 +0000 (13:04 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 30 Aug 2022 11:04:53 +0000 (13:04 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/ui/web/tests/unit/CSTable.spec.ts

index b77fab86b9e1ba819edd20d067f3c59edb79105c..b6084d9c2c4f010b3f97e24e85577772ff6bd35b 100644 (file)
@@ -6,7 +6,11 @@ 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' },