Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* A teszt-suite futási profil-ja. A generator a metaadatból eldönti melyik
* test-case-ek kerülnek be a kiadott spec-be:
*
* - `smoke` — minden field-en csak az `emptyInput` + 1 `valid`-eset + 1 `invalid`-eset
* (~3-5 teszt / field). Cél: <2 perc CI-loop.
* - `full` — minden curated test-case (~15-30 / field). Cél: <10 perc PR-gate.
* - `nightly` — full + tüzeléses (rapid-toggle, triple-paste, double-click) + extra
* iter (slider/range fuzz). Cél: <30 perc.
*/
export enum DyE2E_TestRunMode_Type {
smoke = 'smoke',
full = 'full',
nightly = 'nightly',
}
|