Keep native session wiring checks compatible with timing instrumentation

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Dotta 2026-09-11 14:59:58 -05:00
parent 658523a9bb
commit 21c0553e99
1 changed files with 2 additions and 2 deletions

View File

@ -415,9 +415,9 @@ it("wires exact-session recovery and guarded selected identity into heartbeat pe
new URL("../heartbeat.ts", import.meta.url),
"utf8",
);
expect(source).toContain("await findNativeSessionResumeRun(db,");
expect(source).toContain("findNativeSessionResumeRun(db,");
expect(source).toContain(
"await prepareNativeSessionBootstrapPersistence(tx,",
"prepareNativeSessionBootstrapPersistence(tx,",
);
expect(source).toContain("nativeSessionId: persistedNativeSessionId,");
expect(source).toContain("lockedProfile.sessionCheckpoint != null");