docs/src/course/03-agent-memory/23-testing-working-memory.md
Let's test our agent's working memory capabilities:
npm run devYour agent should be able to recall all this information from its working memory, even if the conversation has moved on to other topics.
The agent should still remember this information because it's stored in working memory, not just in the conversation history.
This test demonstrates how working memory allows your agent to maintain persistent information about the user across different topics and conversation turns. Unlike conversation history, which only includes recent messages, working memory provides a structured way to store and retrieve important information about the user regardless of when it was mentioned.