()
| 144 | } |
| 145 | |
| 146 | static _checkRequirements() { |
| 147 | try { |
| 148 | // In ESM, axios is already imported at the top, so no need to check |
| 149 | // The import will fail at module load time if axios is missing |
| 150 | return null |
| 151 | } catch (e) { |
| 152 | return ['axios'] |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | _before() { |
| 157 | this.headers = { ...this.options.defaultHeaders } |
no outgoing calls
no test coverage detected