Я пытаюсь обновить результаты теста для Azure Devops через API с помощью axios, но в конце моего запроса я получаю эту ошибку
Value cannot be null.\r\nParameter name: results
И это мой запрос
axios({
method: 'patch',
url: resultUrl,
data: {
"outcome": "Failed",
},
auth: {
username: config.credentials.username,
password: config.credentials.password
},
headers: {
'Content-Type': 'application/json'
}
}).then(function (response) {
console.log(response);
}).catch(function (error) {
console.log(error);
});