mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-19 22:53:08 +00:00
feat(tests): implement test runner functionality with API integration
- Added Test Runner Service to manage test execution processes for worktrees. - Introduced endpoints for starting and stopping tests, and retrieving test logs. - Created UI components for displaying test logs and managing test sessions. - Integrated test runner events for real-time updates in the UI. - Updated project settings to include configurable test commands. This enhancement allows users to run tests directly from the UI, view logs in real-time, and manage test sessions effectively.
This commit is contained in:
@@ -8,4 +8,18 @@ export { useOSDetection, type OperatingSystem, type OSDetectionResult } from './
|
||||
export { useResponsiveKanban } from './use-responsive-kanban';
|
||||
export { useScrollTracking } from './use-scroll-tracking';
|
||||
export { useSettingsMigration } from './use-settings-migration';
|
||||
export {
|
||||
useTestRunners,
|
||||
useTestRunnerEvents,
|
||||
type StartTestOptions,
|
||||
type StartTestResult,
|
||||
type StopTestResult,
|
||||
type TestSession,
|
||||
} from './use-test-runners';
|
||||
export {
|
||||
useTestLogs,
|
||||
useTestLogEvents,
|
||||
type TestLogState,
|
||||
type UseTestLogsOptions,
|
||||
} from './use-test-logs';
|
||||
export { useWindowState } from './use-window-state';
|
||||
|
||||
Reference in New Issue
Block a user