mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
19 lines
256 B
Go
19 lines
256 B
Go
|
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")
|
||
|
}
|