Files
AetherForge/server/web/e2e/global-teardown.ts
AetherForge e3d7ecc33f
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Stabilize Playwright phase 8 E2E to 25 green specs.
Harden login and online-card assertions, fix multi-hop discover spread selection, add Path Tracer RS lanes mock E2E, and graceful stub WS teardown.
2026-06-07 07:01:35 -07:00

8 lines
233 B
TypeScript

import { teardownDiscoverSpreadStub } from './discover-spread-stub';
import { teardownLiveStubAgent } from './live-stub';
export default function globalTeardown(): void {
teardownDiscoverSpreadStub();
teardownLiveStubAgent();
}