You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(test): satisfy ESLint naming-convention and require-unicode-regexp
Alias snake_case columns to camelCase in row casts and add the `u` flag to
the /reserved/i regex so the new FK-integrity tests pass the repo's lint
rules without suppressions.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
constsentinel=db.prepare("SELECT agent_name, active FROM identity WHERE agent_name = ?").get(BROADCAST)as{agent_name: string;active: number}|undefined;
212
-
constbroadcastRow=db.prepare("SELECT to_agent, content FROM messages WHERE to_agent = ?").get(BROADCAST)as{to_agent: string;content: string}|undefined;
211
+
constsentinel=db.prepare("SELECT agent_name AS agentName, active FROM identity WHERE agent_name = ?").get(BROADCAST)as{agentName: string;active: number}|undefined;
212
+
constbroadcastRow=db.prepare("SELECT to_agent AS toAgent, content FROM messages WHERE to_agent = ?").get(BROADCAST)as{toAgent: string;content: string}|undefined;
213
213
db.close();
214
214
215
215
assert.notStrictEqual(sentinel,undefined,"Broadcast sentinel identity row must exist");
0 commit comments