Web UI: Fix NPE at template loading
[e-mobility-charging-stations-simulator.git] / src / ui / web / tests / unit / CSTable.spec.ts
index 28da36d7a9bf5ef79454214686e724826a0bf8d7..b77fab86b9e1ba819edd20d067f3c59edb79105c 100644 (file)
@@ -1,7 +1,7 @@
 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', () => {
@@ -11,7 +11,6 @@ describe('CSTable.vue', () => {
     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');