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