(options: {
enabled: boolean;
workspaceInfo?: ReturnType<typeof workspaceInfo>;
})
| 71 | } |
| 72 | |
| 73 | function createClient(options: { |
| 74 | enabled: boolean; |
| 75 | workspaceInfo?: ReturnType<typeof workspaceInfo>; |
| 76 | }) { |
| 77 | return createRouterClient(router(), { context: createContext(options) }); |
| 78 | } |
| 79 | |
| 80 | test("all memory routes reject while the experiment is disabled", async () => { |
| 81 | const client = createClient({ enabled: false }); |
no test coverage detected