 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>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|     value: true
 | |
| });
 | |
| exports.default = createIterator;
 | |
| 
 | |
| var _isArrayLike = require('./isArrayLike.js');
 | |
| 
 | |
| var _isArrayLike2 = _interopRequireDefault(_isArrayLike);
 | |
| 
 | |
| var _getIterator = require('./getIterator.js');
 | |
| 
 | |
| var _getIterator2 = _interopRequireDefault(_getIterator);
 | |
| 
 | |
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 | |
| 
 | |
| function createArrayIterator(coll) {
 | |
|     var i = -1;
 | |
|     var len = coll.length;
 | |
|     return function next() {
 | |
|         return ++i < len ? { value: coll[i], key: i } : null;
 | |
|     };
 | |
| }
 | |
| 
 | |
| function createES2015Iterator(iterator) {
 | |
|     var i = -1;
 | |
|     return function next() {
 | |
|         var item = iterator.next();
 | |
|         if (item.done) return null;
 | |
|         i++;
 | |
|         return { value: item.value, key: i };
 | |
|     };
 | |
| }
 | |
| 
 | |
| function createObjectIterator(obj) {
 | |
|     var okeys = obj ? Object.keys(obj) : [];
 | |
|     var i = -1;
 | |
|     var len = okeys.length;
 | |
|     return function next() {
 | |
|         var key = okeys[++i];
 | |
|         if (key === '__proto__') {
 | |
|             return next();
 | |
|         }
 | |
|         return i < len ? { value: obj[key], key } : null;
 | |
|     };
 | |
| }
 | |
| 
 | |
| function createIterator(coll) {
 | |
|     if ((0, _isArrayLike2.default)(coll)) {
 | |
|         return createArrayIterator(coll);
 | |
|     }
 | |
| 
 | |
|     var iterator = (0, _getIterator2.default)(coll);
 | |
|     return iterator ? createES2015Iterator(iterator) : createObjectIterator(coll);
 | |
| }
 | |
| module.exports = exports.default; |