From 577f796cee9cdb99202b27a1179d3626bc7a57ad Mon Sep 17 00:00:00 2001 From: Chirag Rupani <36813124+chiragrupani@users.noreply.github.com> Date: Wed, 20 Feb 2019 22:41:17 +0530 Subject: [PATCH] Added Azure pipeline --- azure-pipelines.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 20dad49..676344d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,16 +18,16 @@ steps: - script: | cd HelloJasmine npm install - npm run test - cd.. + npm run testWithCoverage + cd .. cd HelloMocha npm install - npm run test - cd.. + npm run testWithCoverage + cd .. cd HelloJest - cd npm install - npm run test - cd.. + npm install + npm run testWithCoverage + cd .. displayName: 'npm install and run tests'