Files
server/main_test.go
2026-01-16 15:49:34 +08:00

14 lines
133 B
Go

package main
import (
"os"
"testing"
"goravel/bootstrap"
)
func TestMain(m *testing.M) {
bootstrap.Boot()
os.Exit(m.Run())
}