From: Jérôme Benoit Date: Sun, 1 Mar 2026 00:36:21 +0000 (+0100) Subject: fix(tests): remove standardCleanup from SetVariables test to fix Windows hang X-Git-Tag: ocpp-server@v3.0.0~50 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=cabf95a70e110df4d7619f254cae8411f07cf624;p=e-mobility-charging-stations-simulator.git fix(tests): remove standardCleanup from SetVariables test to fix Windows hang --- diff --git a/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-SetVariables.test.ts b/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-SetVariables.test.ts index 04dc8acc..f9f21582 100644 --- a/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-SetVariables.test.ts +++ b/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-SetVariables.test.ts @@ -27,7 +27,6 @@ import { SetVariableStatusEnumType, } from '../../../../src/types/index.js' import { Constants } from '../../../../src/utils/index.js' -import { standardCleanup } from '../../../../tests/helpers/TestLifecycleHelpers.js' import { TEST_CHARGING_STATION_BASE_NAME, TEST_CONNECTOR_ID_VALID_INSTANCE, @@ -66,7 +65,6 @@ await describe('B05 - Set Variables', async () => { // Reset singleton state after each test to ensure test isolation afterEach(() => { - standardCleanup() OCPP20VariableManager.getInstance().resetRuntimeOverrides() })