We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 221458c commit f7f6c7fCopy full SHA for f7f6c7f
src/Tests/IntegrationTests.cs
@@ -36,6 +36,12 @@ public async Task RunConversationAsync()
36
var services = new ServiceCollection()
37
.AddSingleton(CloudStorageAccount.DevelopmentStorageAccount)
38
.AddSingleton<IConfiguration>(configuration);
39
+
40
+ CloudStorageAccount.DevelopmentStorageAccount.CreateTableServiceClient()
41
+ .CreateTableIfNotExists("WhatsAppMessages");
42
43
+ .CreateTableIfNotExists("WhatsAppConversations");
44
45
IEnumerable<IMessage>? messages = null;
46
47
services
0 commit comments