Files
LocalAGI/tests/e2e/e2e_suite_test.go
Ettore Di Giacinto 2f19feff5e fixups
2025-04-09 21:25:44 +02:00

18 lines
287 B
Go

package e2e_test
import (
"os"
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestE2E(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "E2E test suite")
}
var apiURL = os.Getenv("LOCALAI_API_URL")
var localagiURL = os.Getenv("LOCALAGI_API_URL")