def ws_client(request, hge_ctx): """ This fixture provides an Apollo GraphQL websockets client """ client = GQLWsClient(hge_ctx, '/v1/graphql') time.sleep(0.1) yield client client.teardown()
def ws_client(request, hge_ctx): client = GQLWsClient(hge_ctx, '/v1/graphql') time.sleep(0.1) yield client client.teardown()