feat(editor): Add "Stop Test" button to stop running evaluations (#17328)

This commit is contained in:
Mutasem Aldmour
2025-07-15 15:10:39 +02:00
committed by GitHub
parent ded2e71d41
commit df80673c96
5 changed files with 98 additions and 25 deletions

View File

@@ -14,7 +14,6 @@ export const useEvaluationStore = defineStore(
() => {
// State
const loadingTestRuns = ref(false);
const fetchedAll = ref(false);
const testRunsById = ref<Record<string, TestRunRecord>>({});
const testCaseExecutionsById = ref<Record<string, TestCaseExecutionRecord>>({});
const pollingTimeouts = ref<Record<string, NodeJS.Timeout>>({});
@@ -170,7 +169,6 @@ export const useEvaluationStore = defineStore(
return {
// State
fetchedAll,
testRunsById,
testCaseExecutionsById,