UNPKG

ordojs

Version:

A revolutionary web framework with compile-time optimizations and unified client-server development

12 lines 744 B
/** * @fileoverview OrdoJS Testing Framework - Main testing utilities */ export { ComponentTestUtils } from './component-utils.js'; export { E2ETestUtils } from './e2e-test.js'; export { IntegrationTestUtils } from './integration-test.js'; export { ReactiveTestUtils } from './reactive-utils.js'; export { ServerMockUtils } from './server-mock.js'; export { SnapshotTester } from './snapshot-tester.js'; export { OrdoJSTestFramework } from './test-framework.js'; export type { ComponentTestResult, E2ETestConfig, IntegrationTestConfig, IntegrationTestResult, MockServerFunction, ReactiveTestCase, ServerMockConfig, SnapshotTestOptions, TestComponentOptions, TestEnvironment, TestResult } from './types.js'; //# sourceMappingURL=index.d.ts.map