Files
openserp/yandex/search_integration_test.go
2026-06-10 15:42:26 +03:00

18 lines
328 B
Go

//go:build integration
// +build integration
package yandex
import (
"testing"
"github.com/karust/openserp/core"
"github.com/karust/openserp/testutil/ithelper"
)
func TestSearchYandex(t *testing.T) {
ithelper.RunEngineTests(t, func(b *core.Browser) core.SearchEngine {
return New(*b, core.SearchEngineOptions{})
})
}