909d23e176
* Watcher computes earliest starting block number * Update tests for new watcher behaviour * Fix error oopsie * Extract conditional to helper and suppres tests logging
20 lines
275 B
Go
20 lines
275 B
Go
package shared_test
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"log"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestShared(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Shared Suite")
|
|
}
|
|
|
|
var _ = BeforeSuite(func() {
|
|
log.SetOutput(ioutil.Discard)
|
|
})
|