bryntum / siesta

Stress-free JavaScript/TypeScript testing and benchmarking tool
38 stars 2 forks source link

API to have assertion pass silently #2

Closed matsbryntse closed 2 years ago

matsbryntse commented 3 years ago

For high volume sanity checks, where only the fail is of interest

canonic-epicure commented 3 years ago

Perhaps something like:

t.silent(t => {
    t.true(something)
    t.is(1, 2)
})
canonic-epicure commented 2 years ago

Implemented as t.silent.true()