change chrome path priority close #1

This commit is contained in:
Adrian Zürcher
2025-12-24 12:15:50 +01:00
parent 537179af03
commit edb8d7e830
3 changed files with 32 additions and 14 deletions

View File

@@ -41,7 +41,10 @@ func TestConvertFiles(t *testing.T) {
})
}
c := converter.NewConverter("./assets")
c, err := converter.NewConverter("./assets")
if err != nil {
t.Fatal(err)
}
if err := c.Convert(input...); err != nil {
t.Fatal(err)