()
| 143 | return undefined; |
| 144 | } |
| 145 | async getEndpointId() { |
| 146 | const pkgJsonPath = await this.getDenoJsonPath(); |
| 147 | const pkgBuffer = await fs.readFile(pkgJsonPath); |
| 148 | const pkgJson = JSON.parse(pkgBuffer.toString()); |
| 149 | return pkgJson["trigger.dev"]?.endpointId; |
| 150 | } |
| 151 | } |
no test coverage detected