UNPKG

@codervisor/devlog-ai

Version:

AI Chat History Extractor & Docker-based Automation - TypeScript implementation for GitHub Copilot and other AI coding assistants with automated testing capabilities

13 lines (10 loc) 404 B
/** * Test Scenarios for Copilot Automation * * Defines various test scenarios for automated Copilot testing */ export { BaseScenario } from './base-scenario.js'; export { CodeGenerationScenario } from './code-generation-scenario.js'; export { ScenarioFactory } from './scenario-factory.js'; // Re-export the TestScenario type for convenience export type { TestScenario } from '../types/index.js';