diff --git a/internal/utils/utils_test.go b/internal/utils/utils_test.go index 840985d..098396b 100644 --- a/internal/utils/utils_test.go +++ b/internal/utils/utils_test.go @@ -86,6 +86,13 @@ func TestGetPath(t *testing.T) { if result != "" { t.Log("Expected empty result but got ", result) } + + validPathKey := "wsPath" + result = GetPath(validPathKey) + if result != "/home/system/components/ws/" { + t.Log("Expected /home/system/components/ws/ but got", result) + t.Fail() + } } func TestGetSQLiteFormattedDateTime(t *testing.T) {