mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-21 04:51:22 -05:00
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
/**
|
|
* 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';
|