Chat / tests /e2e /e2e_suite_test.go
Baraaqasem's picture
Upload 711 files
651d019 verified
raw
history blame contribute delete
256 Bytes
package e2e_test
import (
"os"
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var (
localAIURL = os.Getenv("LOCALAI_API")
)
func TestLocalAI(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "LocalAI E2E test suite")
}