birthdaybot/server/web_test.go
2023-07-11 15:47:01 +02:00

15 lines
219 B
Go

package server
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestPort(t *testing.T) {
th := SetupTestHelper(t)
defer th.TearDown()
port := th.srv.WebServer.Port()
require.NotEmpty(t, port)
}