feat(FN-1761): fix lint errors in executor.test.ts and restart.integration.test.ts

- executor.test.ts: remove unused imports (Column, StuckTaskDetector),
  replace Function type with EventListener, add MockTaskStore interface
- restart.integration.test.ts: replace require() with ESM import,
  replace Function types with proper function signatures
- All tests pass
This commit is contained in:
Fusion
2026-04-15 03:00:54 -07:00
committed by gsxdsm
parent 0d6535a952
commit f2259282ea
9 changed files with 309 additions and 236 deletions

View File

@@ -502,7 +502,7 @@ export class PluginRunner {
this.hookTimeoutMs,
`Hook ${hookName} timed out`,
);
} catch (_err) {
} catch {
// Error already logged by invokeHook
}
}