ipld-eth-server/libraries/shared/shared_suite_test.go
Edvard Hübinette 909d23e176 VDB-284 Run watcher from earliest startingBlockNumber (#136)
* Watcher computes earliest starting block number

* Update tests for new watcher behaviour

* Fix error oopsie

* Extract conditional to helper and suppres tests logging
2019-01-15 11:09:13 +01:00

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)
})