feat(f6.9): consolidate act and report documents and simplify follow-up
Android CI / RC / Android · lint, tests, debug APK, release compile (push) Successful in 3m24s
DH V2 CI / API · typecheck, tests, build (push) Successful in 40s
DH V2 CI / WEB · typecheck, build (push) Successful in 18s
Production dependency audit / API · production dependencies (push) Successful in 8s
Production dependency audit / WEB · production dependencies (push) Successful in 9s
DH V2 CI / Docker / scripts contract (push) Successful in 1m22s

This commit is contained in:
DH V2
2026-09-15 18:48:12 -03:00
parent 079728aa6d
commit 5cf99442a8
39 changed files with 1604 additions and 566 deletions
@@ -36,15 +36,14 @@ test('F4 document center and inspection detail consume the F4 act client', () =>
test('F4 closure UI treats sealing as the definitive act state', () => {
assert.match(closurePanel, /getInspectionClosureF4/);
assert.match(closurePanel, /act\.status === 'SEALED'/);
assert.match(closurePanel, /ACTA SELLADA/);
assert.match(closurePanel, /manifestación de la empresa puede completarse/);
assert.match(closurePanel, /Pendiente de evento válido/);
assert.match(closurePanel, /Participantes y firmas/);
assert.doesNotMatch(closurePanel, /Pendiente de evento válido/);
assert.doesNotMatch(closurePanel, /reabrir ni cerrar el acta/);
});
test('F4 presentation keeps new lifecycle labels while retaining explicit legacy readability', () => {
assert.match(presentation, /LOCKED: 'Bloqueada/);
assert.match(presentation, /SEALED: 'Sellada'/);
assert.match(presentation, /LOCKED: 'Para firmar/);
assert.match(presentation, /SEALED: 'Firmada y cerrada'/);
assert.match(presentation, /READY: 'Lista para cerrar · legado'/);
assert.match(presentation, /CLOSED: 'Cerrada · legado'/);
assert.match(presentation, /CLOSED: 'Firmada y cerrada'/);
});