@@ -104,9 +104,9 @@ describe("AzuriteContainer", { timeout: 240_000 }, () => {
104104
105105 await using container = await new AzuriteContainer ( IMAGE )
106106 . withSkipApiVersionCheck ( )
107- . withBlobPort ( { container : 10001 , host : blobPort } )
108- . withQueuePort ( { container : 10002 , host : queuePort } )
109- . withTablePort ( { container : 10003 , host : tablePort } )
107+ . withBlobPort ( { container : 11000 , host : blobPort } )
108+ . withQueuePort ( { container : 11001 , host : queuePort } )
109+ . withTablePort ( { container : 11002 , host : tablePort } )
110110 . start ( ) ;
111111
112112 expect ( container . getBlobPort ( ) ) . toBe ( blobPort ) ;
@@ -122,6 +122,14 @@ describe("AzuriteContainer", { timeout: 240_000 }, () => {
122122 const serviceClient = BlobServiceClient . fromConnectionString ( connectionString ) ;
123123 const containerClient = serviceClient . getContainerClient ( "test" ) ;
124124 await containerClient . createIfNotExists ( ) ;
125+
126+ const queueServiceClient = QueueServiceClient . fromConnectionString ( connectionString ) ;
127+ await queueServiceClient . createQueue ( "test-queue" ) ;
128+
129+ const tableClient = TableClient . fromConnectionString ( connectionString , "testTable" , {
130+ allowInsecureConnection : true ,
131+ } ) ;
132+ await tableClient . createTable ( ) ;
125133 } ) ;
126134
127135 it ( "should be able to enable HTTPS with PEM certificate and key" , async ( ) => {
0 commit comments