 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>
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|     value: true
 | |
| });
 | |
| exports.default = parallelLimit;
 | |
| 
 | |
| var _eachOfLimit = require('./internal/eachOfLimit.js');
 | |
| 
 | |
| var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
 | |
| 
 | |
| var _parallel = require('./internal/parallel.js');
 | |
| 
 | |
| var _parallel2 = _interopRequireDefault(_parallel);
 | |
| 
 | |
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 | |
| 
 | |
| /**
 | |
|  * The same as [`parallel`]{@link module:ControlFlow.parallel} but runs a maximum of `limit` async operations at a
 | |
|  * time.
 | |
|  *
 | |
|  * @name parallelLimit
 | |
|  * @static
 | |
|  * @memberOf module:ControlFlow
 | |
|  * @method
 | |
|  * @see [async.parallel]{@link module:ControlFlow.parallel}
 | |
|  * @category Control Flow
 | |
|  * @param {Array|Iterable|AsyncIterable|Object} tasks - A collection of
 | |
|  * [async functions]{@link AsyncFunction} to run.
 | |
|  * Each async function can complete with any number of optional `result` values.
 | |
|  * @param {number} limit - The maximum number of async operations at a time.
 | |
|  * @param {Function} [callback] - An optional callback to run once all the
 | |
|  * functions have completed successfully. This function gets a results array
 | |
|  * (or object) containing all the result arguments passed to the task callbacks.
 | |
|  * Invoked with (err, results).
 | |
|  * @returns {Promise} a promise, if a callback is not passed
 | |
|  */
 | |
| function parallelLimit(tasks, limit, callback) {
 | |
|     return (0, _parallel2.default)((0, _eachOfLimit2.default)(limit), tasks, callback);
 | |
| }
 | |
| module.exports = exports.default; |