blocky/server/server_suite_test.go

16 lines
278 B
Go

package server
import (
"testing"
. "github.com/0xERR0R/blocky/log"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestDNSServer(t *testing.T) {
ConfigureLogger(LevelFatal, FormatTypeText, true)
RegisterFailHandler(Fail)
RunSpecs(t, "Server Suite")
}