- Add support for --title/-t and --description/-d flags in add-task command - Fix validation for manual creation mode (title + description) - Implement proper testing for both prompt and manual creation modes - Update testing documentation with Commander.js testing best practices - Add guidance on handling variable hoisting and module initialization issues Changeset: brave-doors-open.md
34 lines
1015 B
JavaScript
34 lines
1015 B
JavaScript
/**
|
|
* Jest setup file
|
|
*
|
|
* This file is run before each test suite to set up the test environment.
|
|
*/
|
|
|
|
// Mock environment variables
|
|
process.env.MODEL = 'sonar-pro';
|
|
process.env.MAX_TOKENS = '64000';
|
|
process.env.TEMPERATURE = '0.4';
|
|
process.env.DEBUG = 'false';
|
|
process.env.LOG_LEVEL = 'error'; // Set to error to reduce noise in tests
|
|
process.env.DEFAULT_SUBTASKS = '3';
|
|
process.env.DEFAULT_PRIORITY = 'medium';
|
|
process.env.PROJECT_NAME = 'Test Project';
|
|
process.env.PROJECT_VERSION = '1.0.0';
|
|
// Ensure tests don't make real API calls by setting mock API keys
|
|
process.env.ANTHROPIC_API_KEY = 'test-mock-api-key-for-tests';
|
|
process.env.PERPLEXITY_API_KEY = 'test-mock-perplexity-key-for-tests';
|
|
|
|
// Add global test helpers if needed
|
|
global.wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
// If needed, silence console during tests
|
|
if (process.env.SILENCE_CONSOLE === 'true') {
|
|
global.console = {
|
|
...console,
|
|
log: jest.fn(),
|
|
info: jest.fn(),
|
|
warn: jest.fn(),
|
|
error: jest.fn()
|
|
};
|
|
}
|