(clientExpression: string, recordName: string, without: boolean)
| 83 | }, |
| 84 | |
| 85 | hasProviders (clientExpression: string, recordName: string, without: boolean) { |
| 86 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 87 | assert.deepEqual(recordData.record.hasProvider, !without) |
| 88 | }) |
| 89 | }, |
| 90 | |
| 91 | hasDataAtPath (clientExpression: string, recordName: string, path: string, data: string) { |
| 92 | data = utils.parseData(data) |
nothing calls this directly
no test coverage detected