webuiServer_test.go 282 B

123456789101112131415
  1. package httpservers
  2. import (
  3. "github.com/stretchr/testify/assert"
  4. "os"
  5. "testing"
  6. )
  7. func TestGetWebuiDir(t *testing.T) {
  8. os.Chdir("../../") // go test sets the cwd to "httpservers" by default
  9. dir := findWebuiDir()
  10. assert.Equal(t, "./webui", dir, "Finding the webui dir")
  11. }