feat(core): Keep track of test case executions during test run (no-changelog) (#12787)

This commit is contained in:
Eugene
2025-01-31 14:27:35 +03:00
committed by GitHub
parent d9d64083d3
commit 1ca6a9799a
20 changed files with 463 additions and 124 deletions

View File

@@ -20,6 +20,7 @@ import { Settings } from './settings';
import { SharedCredentials } from './shared-credentials';
import { SharedWorkflow } from './shared-workflow';
import { TagEntity } from './tag-entity';
import { TestCaseExecution } from './test-case-execution.ee';
import { TestDefinition } from './test-definition.ee';
import { TestMetric } from './test-metric.ee';
import { TestRun } from './test-run.ee';
@@ -64,4 +65,5 @@ export const entities = {
TestDefinition,
TestMetric,
TestRun,
TestCaseExecution,
};