12 lines
125 B
Go
12 lines
125 B
Go
//go:build integration
|
|
|
|
package tests
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
runIntegrationTests(t)
|
|
}
|