mirror of
https://github.com/mudler/LocalAI
synced 2026-05-24 09:28:23 +00:00
14 lines
180 B
Go
14 lines
180 B
Go
|
|
package cli
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/onsi/ginkgo/v2"
|
||
|
|
. "github.com/onsi/gomega"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestCLI(t *testing.T) {
|
||
|
|
RegisterFailHandler(Fail)
|
||
|
|
RunSpecs(t, "CLI Suite")
|
||
|
|
}
|