(clientExpression: string, recordName: string)
| 5 | import * as assert from 'assert' |
| 6 | |
| 7 | function getRecordData (clientExpression: string, recordName: string) { |
| 8 | return clientHandler.getClients(clientExpression).map((client) => client.record.records[recordName]) |
| 9 | } |
| 10 | |
| 11 | function getListData (clientExpression: string, listName: string) { |
| 12 | return clientHandler.getClients(clientExpression).map((client) => client.record.lists[listName]) |
no outgoing calls
no test coverage detected