mirror of
https://github.com/dnote/dnote
synced 2026-03-16 15:35:52 +01:00
17 lines
204 B
Go
17 lines
204 B
Go
package tmpl
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/dnote/dnote/pkg/server/testutils"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
testutils.InitTestDB()
|
|
|
|
code := m.Run()
|
|
testutils.ClearData()
|
|
|
|
os.Exit(code)
|
|
}
|