项目文件夹

文件

37 行
776 B
Plaintext

exports[`McpContext > should include detailed network request in structured content 1`] = `
{
"networkRequest": {
"requestId": 456,
"method": "GET",
"url": "http://example.com/detail",
"status": "[pending]",
"requestHeaders": {
"content-size": "10"
}
}
}
`;
exports[`McpContext > should include file paths in structured content when saving to file 1`] = `
{
"networkRequest": {
"requestBody": "/tmp/req.txt",
"responseBody": "/tmp/res.txt"
}
}
`;
exports[`McpContext > should include network requests in structured content 1`] = `
{
"networkRequests": [
{
"requestId": 123,
"method": "GET",
"url": "http://example.com/api",
"status": "[pending]",
"selectedInDevToolsUI": false
}
]
}
`;