feat(libreoffice): add many more options for conversions

This commit is contained in:
Julien Neuhart
2024-06-30 21:34:57 +02:00
parent b3f4a02658
commit 84dc57373a
6 changed files with 382 additions and 240 deletions

View File

@@ -14,6 +14,15 @@ import (
"github.com/gotenberg/gotenberg/v8/pkg/gotenberg"
)
func TestDefaultOptions(t *testing.T) {
actual := DefaultOptions()
notExpect := Options{}
if reflect.DeepEqual(actual, notExpect) {
t.Errorf("expected %v and got identical %v", actual, notExpect)
}
}
func TestApi_Descriptor(t *testing.T) {
descriptor := new(Api).Descriptor()