()
| 153 | } |
| 154 | |
| 155 | async removeSession(): Promise<void> { |
| 156 | const session_cooies = (await this.getCookies()); |
| 157 | session_cooies.empty(); |
| 158 | // 空のcookieで設定ファイルを上書きする |
| 159 | await this.saveCookie(); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * cookieへの保存を設定ファイルに反映する。 |
nothing calls this directly
no test coverage detected