Spaces:
Running
Running
File size: 499 Bytes
cc11e77 | 1 2 3 4 5 6 7 8 9 10 11 | // acceptanceTypes.ts — Tipi condivisi tra goalTestDeriver.ts e acceptancePatternsCore.ts
// Estratto per rompere il ciclo circolare:
// acceptancePatterns.ts → acceptancePatternsCore.ts → goalTestDeriver.ts → acceptancePatterns.ts
export interface AcceptanceTest {
id: string;
requirement: string; // "Login funziona"
checkFn: string; // codice JS che ritorna {pass: bool, detail: string}
critical: boolean; // se true, blocca DONE se fallisce
}
|