Other(CI): Increase integration tests timeout

This commit is contained in:
James Houlahan
2022-10-25 13:54:25 +02:00
parent 14fbdb5e04
commit 351c019310
3 changed files with 15 additions and 9 deletions

11
tests/main_test.go Normal file
View File

@ -0,0 +1,11 @@
package tests
import (
"testing"
"go.uber.org/goleak"
)
func TestMain(m *testing.M) {
goleak.VerifyTestMain(m, goleak.IgnoreCurrent())
}