chore: fix remaining lint error in tests

This commit is contained in:
Keith Guerin
2026-03-01 13:12:14 -08:00
parent 043a08807b
commit db724097b0
113 changed files with 1457 additions and 1577 deletions
@@ -40,7 +40,7 @@ describe('createMockCommandContext', () => {
it('should apply deeply nested overrides correctly', () => {
// This is the most important test for factory's logic.
const mockConfig = {
getProjectRoot: () => '/test/project',
getWorkspaceRoot: () => '/test/workspace',
getModel: () => 'gemini-pro',
};
@@ -54,7 +54,7 @@ describe('createMockCommandContext', () => {
expect(context.services.config).toBeDefined();
expect(context.services.config?.getModel()).toBe('gemini-pro');
expect(context.services.config?.getProjectRoot()).toBe('/test/project');
expect(context.services.config?.getWorkspaceRoot()).toBe('/test/workspace');
// Verify a default property on the same nested object is still there
expect(context.services.logger).toBeDefined();