 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>
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function levenshtein(a, b) {
 | |
|     if (a.length === 0)
 | |
|         return b.length;
 | |
|     if (b.length === 0)
 | |
|         return a.length;
 | |
|     const matrix = [];
 | |
|     let i;
 | |
|     for (i = 0; i <= b.length; i++) {
 | |
|         matrix[i] = [i];
 | |
|     }
 | |
|     let j;
 | |
|     for (j = 0; j <= a.length; j++) {
 | |
|         matrix[0][j] = j;
 | |
|     }
 | |
|     for (i = 1; i <= b.length; i++) {
 | |
|         for (j = 1; j <= a.length; j++) {
 | |
|             if (b.charAt(i - 1) === a.charAt(j - 1)) {
 | |
|                 matrix[i][j] = matrix[i - 1][j - 1];
 | |
|             }
 | |
|             else {
 | |
|                 if (i > 1 &&
 | |
|                     j > 1 &&
 | |
|                     b.charAt(i - 2) === a.charAt(j - 1) &&
 | |
|                     b.charAt(i - 1) === a.charAt(j - 2)) {
 | |
|                     matrix[i][j] = matrix[i - 2][j - 2] + 1;
 | |
|                 }
 | |
|                 else {
 | |
|                     matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, Math.min(matrix[i][j - 1] + 1, matrix[i - 1][j] + 1));
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
|     return matrix[b.length][a.length];
 | |
| }
 |