test: expand settings coverage

This commit is contained in:
Peter Steinberger
2025-12-24 17:42:14 +01:00
parent 7fafe54e16
commit deec315f6a
15 changed files with 766 additions and 32 deletions

View File

@@ -55,5 +55,14 @@ struct CronJobEditorSmokeTests {
onSave: { _ in })
_ = view.body
}
}
@Test func cronJobEditorExercisesBuilders() {
var view = CronJobEditor(
job: nil,
isSaving: .constant(false),
error: .constant(nil),
onCancel: {},
onSave: { _ in })
view.exerciseForTesting()
}
}