(canisterName)
| 52 | }; |
| 53 | |
| 54 | const getCandid = (canisterName) => |
| 55 | fs |
| 56 | .readFileSync(`${getCanisterPath(canisterName)}/${canisterName}.did.js`) |
| 57 | .toString() |
| 58 | .replace(/(\bexport\b\s+(default\s+)?)/g, ""); |
| 59 | |
| 60 | const getCanisterId = (canisterName) => { |
| 61 | const canisterIdsPath = networkName === "local" ? outputRoot : "."; |
no test coverage detected