(clientExpression: string, recordName: string, data: string)
| 37 | }, |
| 38 | |
| 39 | receivedUpdate (clientExpression: string, recordName: string, data: string) { |
| 40 | data = utils.parseData(data) |
| 41 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 42 | sinon.assert.calledOnce(recordData.subscribeCallback) |
| 43 | sinon.assert.calledWith(recordData.subscribeCallback, data) |
| 44 | recordData.subscribeCallback.resetHistory() |
| 45 | }) |
| 46 | }, |
| 47 | |
| 48 | receivedUpdateForPath (clientExpression: string, recordName: string, path: string, data: string) { |
| 49 | data = utils.parseData(data) |
nothing calls this directly
no test coverage detected