Implemented test run update

This commit is contained in:
Takeshi Kimata
2024-04-13 13:40:37 +09:00
parent 42ab034a59
commit 387385fec4
3 changed files with 31 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ async function updateRun(updateTestRun: RunType) {
body: JSON.stringify(updateTestRun),
};
const url = `${apiServer}/cases/${updateTestRun.id}`;
const url = `${apiServer}/runs/${updateTestRun.id}`;
try {
const response = await fetch(url, fetchOptions);