go-typst/examples/simple/main_test.go
2025-02-27 16:08:02 +01:00

17 lines
179 B
Go

package main
import (
"testing"
)
// Run the example as a test.
func TestMain(t *testing.T) {
defer func() {
if r := recover(); r != nil {
t.Error(r)
}
}()
main()
}