feat(e2e): Ensure AI is setup for E2E tests in pipeline. (#1532)

This commit is contained in:
vinagesh 2020-08-24 13:25:04 -07:00 коммит произвёл GitHub
Родитель d632a1e8da
Коммит 36a2edf338
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -187,6 +187,13 @@ Function RunTests($message, $framework = "*", $filterTestCategory = "*")
Set-Location $rootDir
Write-Host "Invoking expression: $runTestCmd ----------"
# Ensure the E2E tests can log to Application Insights
if ([string]::IsNullOrWhiteSpace($env:E2E_IKEY))
{
throw "Application Insights is not configured for logging in E2E tests."
}
Invoke-Expression $runTestCmd
if ($LASTEXITCODE -ne 0)