Skip to content

Commit f7f6c7f

Browse files
committed
Fix integration test
1 parent 221458c commit f7f6c7f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Tests/IntegrationTests.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ public async Task RunConversationAsync()
3636
var services = new ServiceCollection()
3737
.AddSingleton(CloudStorageAccount.DevelopmentStorageAccount)
3838
.AddSingleton<IConfiguration>(configuration);
39+
40+
CloudStorageAccount.DevelopmentStorageAccount.CreateTableServiceClient()
41+
.CreateTableIfNotExists("WhatsAppMessages");
42+
CloudStorageAccount.DevelopmentStorageAccount.CreateTableServiceClient()
43+
.CreateTableIfNotExists("WhatsAppConversations");
44+
3945
IEnumerable<IMessage>? messages = null;
4046

4147
services

0 commit comments

Comments
 (0)