forked from cerc-io/ipld-eth-server
605b0a96ae
* Add graphql server * Update Makefile * Update log_filters constraint * Add GetLogFilter to repo * Update travis (use Makefile, go fmt, go vet) * Add logFilter schema and resolvers * Add GetWatchedEvent to watched_events_repo * Add watchedEventLog schema and resolvers
14 lines
213 B
Go
14 lines
213 B
Go
package graphql_server_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestGraphqlServer(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "GraphqlServer Suite")
|
|
}
|