selfprivacy-rest-api/tests/test_graphql/test_websocket.py
2024-05-27 21:30:51 +00:00

7 lines
280 B
Python

def test_websocket_connection_bare(authorized_client):
client =authorized_client
with client.websocket_connect('/graphql', subprotocols=[ "graphql-transport-ws","graphql-ws"] ) as websocket:
assert websocket is not None
assert websocket.scope is not None