From 9d967febc442477c5f0bd9e3b1a8f25ec8340200 Mon Sep 17 00:00:00 2001 From: Anastasia Kubova Date: Mon, 29 Jun 2020 18:30:53 +0300 Subject: [PATCH] add missing changes in tests --- Tasks/AppCenterDistributeV1/Tests/L0.ts | 2 +- Tasks/AppCenterDistributeV2/Tests/L0.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Tasks/AppCenterDistributeV1/Tests/L0.ts b/Tasks/AppCenterDistributeV1/Tests/L0.ts index 02dd80d1ba95..91a62bbd0bab 100644 --- a/Tasks/AppCenterDistributeV1/Tests/L0.ts +++ b/Tasks/AppCenterDistributeV1/Tests/L0.ts @@ -46,7 +46,7 @@ describe('AppCenterDistribute L0 Suite', function () { }); it('Negative path: failed when HTTP status is not 2xx', function () { - this.timeout(4000); + this.timeout(6000); let tp = path.join(__dirname, 'L0FailsHttpStatusNot2xx.js'); let tr: ttm.MockTestRunner = new ttm.MockTestRunner(tp); diff --git a/Tasks/AppCenterDistributeV2/Tests/L0.ts b/Tasks/AppCenterDistributeV2/Tests/L0.ts index c13ac24adc5f..0c8316b84bdf 100644 --- a/Tasks/AppCenterDistributeV2/Tests/L0.ts +++ b/Tasks/AppCenterDistributeV2/Tests/L0.ts @@ -48,10 +48,9 @@ describe('AppCenterDistribute L0 Suite', function () { assert(tr.failed, 'task should have failed'); }); - it.only('Negative path: failed when HTTP status is not 2xx', function () { + it('Negative path: failed when HTTP status is not 2xx', function () { let tp = path.join(__dirname, 'L0FailsHttpStatusNot2xx.js'); let tr: ttm.MockTestRunner = new ttm.MockTestRunner(tp); - tr.run(); assert(tr.succeeded, 'task should have succeeded'); });