From ec376a65b1902bbccbca48ab69a344bbee562948 Mon Sep 17 00:00:00 2001 From: Ricardo de pena Date: Tue, 22 Aug 2017 17:04:31 -0400 Subject: [PATCH] RUN-3271 Ignore run-application for entity existance checks for now, as it breaks behaviour contracts with Adapters. --- .../api_protocol/api_handlers/middleware_entity_existence.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/browser/api_protocol/api_handlers/middleware_entity_existence.ts b/src/browser/api_protocol/api_handlers/middleware_entity_existence.ts index b5179fc8d..d85ec348a 100644 --- a/src/browser/api_protocol/api_handlers/middleware_entity_existence.ts +++ b/src/browser/api_protocol/api_handlers/middleware_entity_existence.ts @@ -24,6 +24,8 @@ const apisToIgnore = new Set([ // Application 'create-application', 'create-child-window', + //TODO: we do not check run for .NET, the adapter will create an application then run it without waiting for the ack. + 'run-application', // Window 'window-exists' ]);