(clientExpression: string, recordName: string, path: string, immediate: boolean)
| 247 | }, |
| 248 | |
| 249 | subscribeWithPath (clientExpression: string, recordName: string, path: string, immediate: boolean) { |
| 250 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 251 | recordData.subscribePathCallbacks[path] = sinon.spy() |
| 252 | recordData.record.subscribe(path, recordData.subscribePathCallbacks[path], !!immediate) |
| 253 | }) |
| 254 | }, |
| 255 | |
| 256 | unsubscribeFromPath (clientExpression: string, recordName: string, path: string) { |
| 257 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected