From d87b87b577081d94c87f188cc490000a31a9d1c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 27 Feb 2026 00:31:38 +0100 Subject: [PATCH] refactor(test): remove unnecessary comments from Reset tests --- .../ocpp/2.0/OCPP20IncomingRequestService-Reset.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-Reset.test.ts b/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-Reset.test.ts index 069ec34f..dcb233cc 100644 --- a/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-Reset.test.ts +++ b/tests/charging-station/ocpp/2.0/OCPP20IncomingRequestService-Reset.test.ts @@ -20,10 +20,7 @@ import { Constants } from '../../../../src/utils/index.js' import { createChargingStation } from '../../../ChargingStationFactory.js' import { TEST_CHARGING_STATION_BASE_NAME } from './OCPP20TestConstants.js' -// Reset tests use fake timers to prevent real setInterval/setTimeout from blocking test runner -// This fixes Windows CI hangs where Node.js test runner waits for all timers to complete await describe('B11 & B12 - Reset', async () => { - // Enable fake timers for all timer APIs used by Reset handlers beforeEach(() => { mock.timers.enable({ apis: ['setInterval', 'setTimeout', 'setImmediate'] }) }) -- 2.43.0