personal-site/config/config_test.go
2021-12-18 10:15:31 -05:00

12 lines
164 B
Go

package config
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestGetConfig(t *testing.T) {
_, err := GetConfig()
require.NoError(t, err)
}