This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/server/compaction/testmain_test.go
2026-03-19 18:50:27 +00:00

16 lines
191 B
Go

package compaction
import (
"os"
"testing"
"chat-switchboard/database"
)
func TestMain(m *testing.M) {
teardown := database.SetupTestDB()
code := m.Run()
teardown()
os.Exit(code)
}