()
| 135 | |
| 136 | private makeSessionResponse({status, data, headers}: AxiosResponse): SessionResponseInterface { |
| 137 | const saveSession = async ()=>{ |
| 138 | const new_cookies = this.CookieConstructor.convertSetCookies2CookieArray(headers["set-cookie"]); |
| 139 | await this.saveSessionFromCookies(new_cookies); |
| 140 | } |
| 141 | return { |
| 142 | status, |
| 143 | data, |
nothing calls this directly
no test coverage detected