- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
40 lines
1 KiB
JavaScript
40 lines
1 KiB
JavaScript
var concatMap = require('../');
|
|
var test = require('tape');
|
|
|
|
test('empty or not', function (t) {
|
|
var xs = [ 1, 2, 3, 4, 5, 6 ];
|
|
var ixes = [];
|
|
var ys = concatMap(xs, function (x, ix) {
|
|
ixes.push(ix);
|
|
return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];
|
|
});
|
|
t.same(ys, [ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]);
|
|
t.same(ixes, [ 0, 1, 2, 3, 4, 5 ]);
|
|
t.end();
|
|
});
|
|
|
|
test('always something', function (t) {
|
|
var xs = [ 'a', 'b', 'c', 'd' ];
|
|
var ys = concatMap(xs, function (x) {
|
|
return x === 'b' ? [ 'B', 'B', 'B' ] : [ x ];
|
|
});
|
|
t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]);
|
|
t.end();
|
|
});
|
|
|
|
test('scalars', function (t) {
|
|
var xs = [ 'a', 'b', 'c', 'd' ];
|
|
var ys = concatMap(xs, function (x) {
|
|
return x === 'b' ? [ 'B', 'B', 'B' ] : x;
|
|
});
|
|
t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]);
|
|
t.end();
|
|
});
|
|
|
|
test('undefs', function (t) {
|
|
var xs = [ 'a', 'b', 'c', 'd' ];
|
|
var ys = concatMap(xs, function () {});
|
|
t.same(ys, [ undefined, undefined, undefined, undefined ]);
|
|
t.end();
|
|
});
|