UNPKG

thrilled-be-testing

Version:

Testing utilities and helpers package with Jest, Supertest, and database testing support for Express applications

28 lines (27 loc) 1.41 kB
"use strict"; /** * testing - Testing utilities for the Thrilled Backend Framework * * This package provides comprehensive testing utilities including: * - Simple mock data factories * - Express testing helpers * - Database testing utilities * - Test environment management */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TestEnvironment = exports.SimpleTestHelpers = exports.SimpleMockFactory = void 0; // Export working simple testing utilities var simple_testing_1 = require("./lib/simple-testing"); Object.defineProperty(exports, "SimpleMockFactory", { enumerable: true, get: function () { return simple_testing_1.SimpleMockFactory; } }); Object.defineProperty(exports, "SimpleTestHelpers", { enumerable: true, get: function () { return simple_testing_1.SimpleTestHelpers; } }); Object.defineProperty(exports, "TestEnvironment", { enumerable: true, get: function () { return simple_testing_1.TestEnvironment; } }); // Advanced features (commented out until dependencies are resolved) // TODO: Fix dependency issues and uncomment these exports // export * from './lib/types/test-types'; // export * from './lib/types/mock-types'; // export * from './lib/test-app-factory'; // export * from './lib/database-test-helpers'; // export * from './lib/mock-factories'; // export * from './lib/api-testing'; // export * from './lib/mocks'; // export * from './lib/test-setup';