mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
/**
|
|
* Jest Setup File
|
|
* Configuration and global test utilities
|
|
*/
|
|
|
|
import { logger } from '../src/lib/quality-validator/utils/logger.js';
|
|
|
|
// Suppress verbose logging during tests
|
|
logger.configure({ verbose: false, useColors: false });
|
|
|
|
// Set test timeout
|
|
jest.setTimeout(10000);
|
|
|
|
// Mock environment
|
|
(process.env as Record<string, string>).NODE_ENV = 'test';
|