mirror of
https://github.com/Dadido3/go-typst.git
synced 2025-04-19 07:33:16 +00:00
17 lines
179 B
Go
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()
|
|
}
|