webuiServer_test.go 203 B

123456789101112
  1. package httpservers
  2. import (
  3. "github.com/stretchr/testify/assert"
  4. "testing"
  5. )
  6. func TestGetWebuiDir(t *testing.T) {
  7. dir := findWebuiDir()
  8. assert.Equal(t, "./webui", dir, "Finding the webui dir")
  9. }