Skip to content

Commit 8989c97

Browse files
gheylenclaude
andcommitted
Style: fix prettier formatting in test files
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent b63eef1 commit 8989c97

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

tests/drivers/Vehicle.capabilityMigration.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,11 @@ describe('Vehicle Capability Migration Tests', () => {
179179

180180
describe('Climate Status Capability', () => {
181181
it('should_addClimateStatusCapability_for_all_drivetrains', async () => {
182-
for (const driveTrain of [DriveTrainType.ELECTRIC, DriveTrainType.COMBUSTION, DriveTrainType.PLUGIN_HYBRID]) {
182+
for (const driveTrain of [
183+
DriveTrainType.ELECTRIC,
184+
DriveTrainType.COMBUSTION,
185+
DriveTrainType.PLUGIN_HYBRID,
186+
]) {
183187
const mockStateManager = vehicle['stateManager'] as any;
184188
mockStateManager.getDriveTrain.mockReturnValue(driveTrain);
185189
addCapabilitySafeSpy.mockClear();

tests/drivers/Vehicle.updateCapabilities.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ describe('Vehicle.updateCapabilitiesFromStatus', () => {
168168

169169
await (vehicle as any).updateCapabilitiesFromStatus(status);
170170

171-
expect(setCapabilityValueSafeSpy).toHaveBeenCalledWith(Capabilities.CLIMATE_STATUS, 'HEATING');
171+
expect(setCapabilityValueSafeSpy).toHaveBeenCalledWith(
172+
Capabilities.CLIMATE_STATUS,
173+
'HEATING'
174+
);
172175
});
173176

174177
it('should_notUpdateClimateStatus_when_climateAbsent', async () => {

0 commit comments

Comments
 (0)