Implement integration testing system

This commit is contained in:
gpt-engineer-app[bot]
2025-10-30 14:35:09 +00:00
parent c0e59c2758
commit 0c34ae1075
8 changed files with 1523 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
/**
* Integration Testing System
*
* Main exports for the comprehensive integration testing framework.
*/
export { IntegrationTestRunner } from './testRunner';
export { allTestSuites } from './suites';
export type { TestResult, Test, TestSuite } from './testRunner';