diff --git a/test/typescript/axios.ts b/test/typescript/axios.ts index 5afadd9..eb6e3fe 100644 --- a/test/typescript/axios.ts +++ b/test/typescript/axios.ts @@ -120,6 +120,14 @@ axios.get('/user', { params: { id: 12345 } }) .then(handleUserResponse) .catch(handleError); +axios.head('/user') + .then(handleResponse) + .catch(handleError); + +axios.delete('/user') + .then(handleResponse) + .catch(handleError); + axios.post('/user', { foo: 'bar' }) .then(handleUserResponse) .catch(handleError);