- 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>
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
exports.default = function (worker, concurrency) {
|
|
// Start with a normal queue
|
|
var q = (0, _queue2.default)(worker, concurrency);
|
|
|
|
var {
|
|
push,
|
|
pushAsync
|
|
} = q;
|
|
|
|
q._tasks = new _Heap2.default();
|
|
q._createTaskItem = ({ data, priority }, callback) => {
|
|
return {
|
|
data,
|
|
priority,
|
|
callback
|
|
};
|
|
};
|
|
|
|
function createDataItems(tasks, priority) {
|
|
if (!Array.isArray(tasks)) {
|
|
return { data: tasks, priority };
|
|
}
|
|
return tasks.map(data => {
|
|
return { data, priority };
|
|
});
|
|
}
|
|
|
|
// Override push to accept second parameter representing priority
|
|
q.push = function (data, priority = 0, callback) {
|
|
return push(createDataItems(data, priority), callback);
|
|
};
|
|
|
|
q.pushAsync = function (data, priority = 0, callback) {
|
|
return pushAsync(createDataItems(data, priority), callback);
|
|
};
|
|
|
|
// Remove unshift functions
|
|
delete q.unshift;
|
|
delete q.unshiftAsync;
|
|
|
|
return q;
|
|
};
|
|
|
|
var _queue = require('./queue.js');
|
|
|
|
var _queue2 = _interopRequireDefault(_queue);
|
|
|
|
var _Heap = require('./internal/Heap.js');
|
|
|
|
var _Heap2 = _interopRequireDefault(_Heap);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
module.exports = exports.default; |