(clientExpression: string, recordName: string)
| 55 | }, |
| 56 | |
| 57 | receivedNoUpdate (clientExpression: string, recordName: string) { |
| 58 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 59 | sinon.assert.notCalled(recordData.subscribeCallback) |
| 60 | }) |
| 61 | }, |
| 62 | |
| 63 | receivedNoUpdateForPath (clientExpression: string, recordName: string, path: string) { |
| 64 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected