This message was deleted.
# dotnet
s
This message was deleted.
p
You should be able to mock the response by adding the named output inside NewResourceAsync for example inside your mock NewResourceAsync
Copy code
outputs.Add("primaryEndpoints", new Dictionary<string, object?>()
{
    {"blob", "BlobEndpoint"},
    {"dfs", "DfsEndpoint"},
    {"file", "FileEndpoint"},
    {"internetEndpoints", null},
    {"microsoftEndpoints", null},
    {"queue", "QueueEndpoint"},
    {"table", "TableEndpoint"},
    {"web", "WebEndpoint"},
});
f
Nice, that worked like a charm