Reset was the last test to complete before the Windows CI hang.
The hang occurs when loading the next test file (SetVariables), indicating
Reset (or earlier) is not cleaning up properly.
Re-enabled: SetVariables test
Skipped: Reset test for further investigation
import { createChargingStation } from '../../../ChargingStationFactory.js'
import { TEST_CHARGING_STATION_BASE_NAME } from './OCPP20TestConstants.js'
-await describe('B11 & B12 - Reset', async () => {
+// FIXME: tests hang on Windows - root cause unknown (dichotomous search: Reset was last test before hang)
+await describe('B11 & B12 - Reset', { skip: process.platform === 'win32' }, async () => {
const mockChargingStation = createChargingStation({
baseName: TEST_CHARGING_STATION_BASE_NAME,
connectorsCount: 3,
getVariableData: OCPP20GetVariableDataType[]
}
-// FIXME: tests hang on Windows - root cause unknown
-await describe('B05 - Set Variables', { skip: process.platform === 'win32' }, async () => {
+await describe('B05 - Set Variables', async () => {
const mockChargingStation = createChargingStation({
baseName: TEST_CHARGING_STATION_BASE_NAME,
connectorsCount: 3,