Set up comprehensive frontend testing infrastructure
- 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>
This commit is contained in:
		
							
								
								
									
										2
									
								
								frontend/node_modules/bs-logger/dist/utils/cache-getters.d.ts
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								frontend/node_modules/bs-logger/dist/utils/cache-getters.d.ts
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| declare const cacheGetters: <T>(target: T, ...props: (keyof T)[]) => T; | ||||
| export { cacheGetters }; | ||||
							
								
								
									
										40
									
								
								frontend/node_modules/bs-logger/dist/utils/cache-getters.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								frontend/node_modules/bs-logger/dist/utils/cache-getters.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,40 @@ | ||||
| "use strict"; | ||||
| var __assign = (this && this.__assign) || function () { | ||||
|     __assign = Object.assign || function(t) { | ||||
|         for (var s, i = 1, n = arguments.length; i < n; i++) { | ||||
|             s = arguments[i]; | ||||
|             for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||||
|                 t[p] = s[p]; | ||||
|         } | ||||
|         return t; | ||||
|     }; | ||||
|     return __assign.apply(this, arguments); | ||||
| }; | ||||
| var __rest = (this && this.__rest) || function (s, e) { | ||||
|     var t = {}; | ||||
|     for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) | ||||
|         t[p] = s[p]; | ||||
|     if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||||
|         for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) | ||||
|             t[p[i]] = s[p[i]]; | ||||
|     return t; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| var cacheGetters = function (target) { | ||||
|     var props = []; | ||||
|     for (var _i = 1; _i < arguments.length; _i++) { | ||||
|         props[_i - 1] = arguments[_i]; | ||||
|     } | ||||
|     props.forEach(function (prop) { | ||||
|         var desc = Object.getOwnPropertyDescriptor(target, prop); | ||||
|         var set = desc.set, previousGet = desc.get, partial = __rest(desc, ["set", "get"]); | ||||
|         desc.get = function get() { | ||||
|             var value = previousGet.call(this); | ||||
|             Object.defineProperty(this, prop, __assign({}, partial, { value: value })); | ||||
|             return value; | ||||
|         }; | ||||
|         Object.defineProperty(target, prop, desc); | ||||
|     }); | ||||
|     return target; | ||||
| }; | ||||
| exports.cacheGetters = cacheGetters; | ||||
		Reference in New Issue
	
	Block a user
	 anthonyrawlins
					anthonyrawlins