define findSystemById method

This commit is contained in:
2025-04-06 14:38:02 -07:00
parent f31e010828
commit d95d112bf2

View File

@@ -37,6 +37,7 @@ export function setupTestServerContext() {
beforeEach(() => { beforeEach(() => {
context.systems = systems; context.systems = systems;
context.findSystemById = async (_: string) => systems[0];
}); });
return context as ServerContext; return context as ServerContext;