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