test(cli): share nodes ios fixture helpers

This commit is contained in:
Peter Steinberger
2026-02-21 21:55:57 +00:00
parent fb73c0034e
commit d6ad647f56
4 changed files with 29 additions and 22 deletions

View File

@@ -0,0 +1,13 @@
export const IOS_NODE = {
nodeId: "ios-node",
displayName: "iOS Node",
remoteIp: "192.168.0.88",
connected: true,
} as const;
export function createIosNodeListResponse(ts: number = Date.now()) {
return {
ts,
nodes: [IOS_NODE],
};
}