(id)
| 160 | } |
| 161 | |
| 162 | async function allPortsConnected(id) { |
| 163 | const addPortAction = addPortQueue.queue.findLast(element => element.args[0].name.includes(id)); |
| 164 | if (addPortAction) { |
| 165 | await addPortAction.promise; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | export async function getAllControllerByType(type) { |
| 170 | const result = []; |
no outgoing calls
no test coverage detected