fix: remove unused variable declarations in session-manager test

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
harshitsinghbhandari 2026-03-31 13:20:45 +05:30
parent 994297ca7e
commit 23f2f0dbeb
1 changed files with 1 additions and 4 deletions

View File

@ -25,16 +25,13 @@ vi.mock("node:child_process", () => {
});
let ctx: TestContext;
let tmpDir: string;
let configPath: string;
let sessionsDir: string;
let mockRegistry: PluginRegistry;
let config: OrchestratorConfig;
let originalPath: string | undefined;
beforeEach(() => {
ctx = setupTestContext();
({ tmpDir, configPath, sessionsDir, mockRegistry, config, originalPath } = ctx);
({ sessionsDir, mockRegistry, config } = ctx);
// Create an opencode agent mock
const opencodeAgent: Agent = {