X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fui%2Fweb%2Ftests%2Funit%2FCSTable.spec.ts;h=6b13495ae3422a9209f7d6a77923e4316d8838bb;hb=dba1b6eebfbfb001cf6d9c6447b78a8161e670b7;hp=96101802af16c3fa119f7ee0c28bc2f3cd3758b1;hpb=63d66f277597ff884df1f18a76ab4078f02df150;p=e-mobility-charging-stations-simulator.git diff --git a/src/ui/web/tests/unit/CSTable.spec.ts b/src/ui/web/tests/unit/CSTable.spec.ts index 96101802..6b13495a 100644 --- a/src/ui/web/tests/unit/CSTable.spec.ts +++ b/src/ui/web/tests/unit/CSTable.spec.ts @@ -1,13 +1,11 @@ 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 = { - '0': {} as unknown as ChargingStationData, - }; + const chargingStations: ChargingStationData[] = []; const wrapper = shallowMount(CSTable, { props: { chargingStations, idTag: '0' }, }); @@ -16,7 +14,7 @@ describe('CSTable.vue', () => { expect(wrapper.text()).to.include('Status'); expect(wrapper.text()).to.include('Transaction'); expect(wrapper.text()).to.include('Name'); - expect(wrapper.text()).to.include('Stopped'); + expect(wrapper.text()).to.include('Started'); expect(wrapper.text()).to.include('Registration Status'); expect(wrapper.text()).to.include('Vendor'); expect(wrapper.text()).to.include('Model');