feat: Scheduled Maintenance feature complete

This commit is contained in:
Eric Gullickson
2025-12-22 14:12:33 -06:00
parent c017b8816f
commit 91b4534e76
44 changed files with 2740 additions and 117 deletions

View File

@@ -48,7 +48,7 @@ const baseEngine: CatalogEngine = {
name: '2.0T',
displacement: '2.0L',
cylinders: 4,
fuel_type: 'Gasoline',
fuelType: 'Gasoline',
createdAt: '2024-01-05T00:00:00Z',
updatedAt: '2024-01-05T00:00:00Z',
};
@@ -129,6 +129,6 @@ describe('buildDefaultValues', () => {
expect(defaults.trimId).toBe(baseTrim.id);
expect(defaults.displacement).toBe('2.0L');
expect(defaults.cylinders).toBe(4);
expect(defaults.fuel_type).toBe('Gasoline');
expect(defaults.fuelType).toBe('Gasoline');
});
});