(clientExpression: string, recordName: string, path: string)
| 61 | }, |
| 62 | |
| 63 | receivedNoUpdateForPath (clientExpression: string, recordName: string, path: string) { |
| 64 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 65 | sinon.assert.notCalled(recordData.subscribePathCallbacks[path]) |
| 66 | }) |
| 67 | }, |
| 68 | |
| 69 | receivedRecordError (clientExpression: string, error: string, recordName: string) { |
| 70 | cl.receivedOneError(clientExpression, 'RECORD', error) |
nothing calls this directly
no test coverage detected