8a9395819c
* Make transactions requests in parallel * Update transaction error handling
20 lines
262 B
Go
20 lines
262 B
Go
package history_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"io/ioutil"
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func init() {
|
|
log.SetOutput(ioutil.Discard)
|
|
}
|
|
|
|
func TestHistory(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "History Suite")
|
|
}
|