...

Source file src/github.com/99designs/gqlgen/graphql/playground/apollo_sandbox_playground_test.go

Documentation: github.com/99designs/gqlgen/graphql/playground

     1  package playground
     2  
     3  import (
     4  	"net/http"
     5  	"testing"
     6  )
     7  
     8  func TestApolloSandboxHandler_Integrity(t *testing.T) {
     9  	testResourceIntegrity(t, func(title, endpoint string) http.HandlerFunc {
    10  		return ApolloSandboxHandler(title, endpoint)
    11  	})
    12  }
    13  

View as plain text