feat(FN-2979): add droid CLI probe module for node diagnostics

Added a new `droid-cli-probe` module to the dashboard package with test coverage, implementing a CLI probe capability for the droid system.

Fusion-Task-Id: FN-2979
This commit is contained in:
Fusion
2026-05-01 04:03:02 -07:00
committed by gsxdsm
parent 0ec5dfa3b1
commit 09551f3d3f
12 changed files with 784 additions and 43 deletions

View File

@@ -54,6 +54,11 @@ describe("TaskStore", () => {
});
afterEach(async () => {
// Ensure teardown always runs on real timers. Some tests in this file use
// timeout/retry-based fs cleanup paths that can stall indefinitely if fake
// timers were left enabled by a preceding test.
vi.useRealTimers();
// Some watcher/polling tests can leave an in-flight poll tick queued right
// before teardown. Stop watching first and yield once so pending callbacks
// settle before removing temp dirs.