selfprivacy-rest-api/tests/test_graphql/test_websocket.py
2024-07-04 17:19:25 +03: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