mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 21:37:21 +00:00
14 lines
201 B
Go
14 lines
201 B
Go
|
|
package hfapi_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/onsi/ginkgo/v2"
|
||
|
|
. "github.com/onsi/gomega"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestHfapi(t *testing.T) {
|
||
|
|
RegisterFailHandler(Fail)
|
||
|
|
RunSpecs(t, "HuggingFace API Suite")
|
||
|
|
}
|