diff --git a/src/SharpBrick.PoweredUp/Deployment/HubExtensions.cs b/src/SharpBrick.PoweredUp/Deployment/HubExtensions.cs index 56e2462..ee41fb6 100644 --- a/src/SharpBrick.PoweredUp/Deployment/HubExtensions.cs +++ b/src/SharpBrick.PoweredUp/Deployment/HubExtensions.cs @@ -24,6 +24,18 @@ public static async Task VerifyDeploymentModelAsync(this Hub self, Action + /// Verifies the deployment model and waits till it reaches zero deployment errors. + /// + /// + /// Builder infrastructure for the deployment model + /// + public static async Task VerifyDeploymentModelAsync(this Hub self, DeploymentModel model) + { + var awaitable = self.VerifyObservable(model) .Do(LogErrors(self)) .Where(x => x.Length == 0)