Conversation
|
i'm trying to understand the |
| const response: Responce = await axios.get(result.links.progress.url, this.config) | ||
| resultsUrl = result.links.results.url | ||
| const response: Response = await axios.get(result.links.progress.url, this.config) | ||
| resultsUrl = result.links.results?.url |
There was a problem hiding this comment.
Actually I think we need to put this not in here since this is simply printing out the status until it is successful.
| resultsUrl = result.links.results?.url | ||
| // Throttling | ||
| await this.sleep(this.sleepTime) | ||
| // Call itself if the request in the running or pending state |
There was a problem hiding this comment.
Also this else block is said for testing only... Not sure what that means especially since it will be actually called. I am rather confused by the purpose of this method and why it was implemented this way.
|
Do you not have github acations setup for this to automatically run our unit tests? |
|
Hah. Ironically, no, been just running the unit tests locally. I suppose it wouldn't be that hard to set up an Actions Workflow for a simple |
No description provided.