(clientExpression: string, recordName: string, path: string, immediate: boolean)
| 240 | }, |
| 241 | |
| 242 | subscribeWithPath (clientExpression: string, recordName: string, path: string, immediate: boolean) { |
| 243 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 244 | recordData.subscribePathCallbacks[path] = sinon.spy() |
| 245 | recordData.record.subscribe(path, recordData.subscribePathCallbacks[path], !!immediate) |
| 246 | }) |
| 247 | }, |
| 248 | |
| 249 | unsubscribeFromPath (clientExpression: string, recordName: string, path: string) { |
| 250 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected