 aacb45156b
			
		
	
	aacb45156b
	
	
	
		
			
			- Install Jest for unit testing with React Testing Library - Install Playwright for end-to-end testing - Configure Jest with proper TypeScript support and module mapping - Create test setup files and utilities for both unit and e2e tests Components: * Jest configuration with coverage thresholds * Playwright configuration with browser automation * Unit tests for LoginForm, AuthContext, and useSocketIO hook * E2E tests for authentication, dashboard, and agents workflows * GitHub Actions workflow for automated testing * Mock data and API utilities for consistent testing * Test documentation with best practices Testing features: - Unit tests with 70% coverage threshold - E2E tests with API mocking and user journey testing - CI/CD integration for automated test runs - Cross-browser testing support with Playwright - Authentication system testing end-to-end 🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| Object.defineProperty(exports, "__esModule", { value: true });
 | |
| var cache_getters_1 = require("../utils/cache-getters");
 | |
| var LogLevels = cache_getters_1.cacheGetters({
 | |
|     trace: 10,
 | |
|     debug: 20,
 | |
|     info: 30,
 | |
|     warn: 40,
 | |
|     error: 50,
 | |
|     fatal: 60,
 | |
|     get lower() {
 | |
|         return LogLevels.trace;
 | |
|     },
 | |
|     get higher() {
 | |
|         return LogLevels.fatal;
 | |
|     },
 | |
| }, 'lower', 'higher');
 | |
| exports.LogLevels = LogLevels;
 | |
| var LogLevelNames = ['trace', 'debug', 'info', 'warn', 'error', 'fatal'];
 | |
| exports.LogLevelNames = LogLevelNames;
 | |
| var LogLevelValues = LogLevelNames.map(function (name) { return LogLevels[name]; });
 | |
| exports.LogLevelValues = LogLevelValues;
 | |
| var LogLevelsScale = LogLevelNames.map(function (name, index, _a) {
 | |
|     var length = _a.length;
 | |
|     var first = index === 0;
 | |
|     var last = index === length - 1;
 | |
|     var from = first ? -Infinity : LogLevelValues[index];
 | |
|     var next = last ? +Infinity : LogLevelValues[index + 1];
 | |
|     var test;
 | |
|     if (first) {
 | |
|         test = function (level) { return level < next; };
 | |
|     }
 | |
|     else if (last) {
 | |
|         test = function (level) { return level >= from; };
 | |
|     }
 | |
|     else {
 | |
|         test = function (level) { return level < next && level >= from; };
 | |
|     }
 | |
|     return { range: { from: from, next: next }, name: name, test: test };
 | |
| });
 | |
| exports.LogLevelsScale = LogLevelsScale;
 | |
| var logLevelNameFor = function (level) {
 | |
|     if (level == null || isNaN(level)) {
 | |
|         return LogLevelNames[0];
 | |
|     }
 | |
|     return LogLevelsScale.find(function (_a) {
 | |
|         var test = _a.test;
 | |
|         return test(level);
 | |
|     }).name;
 | |
| };
 | |
| exports.logLevelNameFor = logLevelNameFor;
 | |
| var parseLogLevel = function (level) {
 | |
|     if (typeof level === 'string') {
 | |
|         level = level.toLowerCase();
 | |
|         if (level in LogLevels) {
 | |
|             return LogLevels[level];
 | |
|         }
 | |
|         return /^\s*[0-9]+\s*$/.test(level) ? parseInt(level.trim(), 10) : undefined;
 | |
|     }
 | |
|     return typeof level === 'number' && !isNaN(level) ? +level : undefined;
 | |
| };
 | |
| exports.parseLogLevel = parseLogLevel;
 |