This commit is contained in:
nrslib 2026-02-02 00:00:54 +09:00
parent 34e9581aa5
commit 8990efaebe
2 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,10 @@ vi.mock('../utils/debug.js', () => ({
}),
}));
vi.mock('../cli.js', () => ({
isQuietMode: vi.fn(() => false),
}));
vi.mock('../config/paths.js', () => ({
loadAgentSessions: vi.fn(() => ({})),
updateAgentSession: vi.fn(),

View File

@ -53,6 +53,10 @@ vi.mock('./workflowExecution.js', () => ({
executeWorkflow: vi.fn(),
}));
vi.mock('../cli.js', () => ({
isQuietMode: vi.fn(() => false),
}));
vi.mock('../constants.js', () => ({
DEFAULT_WORKFLOW_NAME: 'default',
DEFAULT_LANGUAGE: 'en',