refactor(coding-agent): move auth storage to backend abstraction
This commit is contained in:
@@ -24,7 +24,7 @@ describe("ExtensionRunner", () => {
|
||||
extensionsDir = path.join(tempDir, "extensions");
|
||||
fs.mkdirSync(extensionsDir);
|
||||
sessionManager = SessionManager.inMemory();
|
||||
const authStorage = new AuthStorage(path.join(tempDir, "auth.json"));
|
||||
const authStorage = AuthStorage.create(path.join(tempDir, "auth.json"));
|
||||
modelRegistry = new ModelRegistry(authStorage);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user