Hello, I'm writing a "unit" test for a WebSocket s...
# ktor
r
Hello, I'm writing a "unit" test for a WebSocket server in ktor. I have it working using
handleWebSocketConversation
, In the Application I use:
Copy code
install(Sessions) {
        cookie<ClientSession>("SESSION")
    }
Now I want to set a pre defined cookie in the test. Any ideas or pointers?