Files
OliveTin/internal/httpservers/webuiServer_test.go
2021-11-04 00:30:36 +00:00

16 lines
282 B
Go

package httpservers
import (
"github.com/stretchr/testify/assert"
"os"
"testing"
)
func TestGetWebuiDir(t *testing.T) {
os.Chdir("../../") // go test sets the cwd to "httpservers" by default
dir := findWebuiDir()
assert.Equal(t, "./webui", dir, "Finding the webui dir")
}