chore: fix eslint errors introduced across phases 1-3
This commit is contained in:
@@ -9,9 +9,9 @@ describe('agent runtime registry', () => {
|
||||
test('registerAdapter/getAdapter resolves a registered runtime', () => {
|
||||
const fake: AgentRuntime = {
|
||||
name: 'codex',
|
||||
prepareAuth: async () => {},
|
||||
runTurn: async () => ({}),
|
||||
abort: async () => {},
|
||||
prepareAuth: () => Promise.resolve(),
|
||||
runTurn: () => Promise.resolve({}),
|
||||
abort: () => Promise.resolve(),
|
||||
};
|
||||
registerAdapter('codex', () => fake);
|
||||
expect(getAdapter('codex').name).toBe('codex');
|
||||
|
||||
Reference in New Issue
Block a user