Take verbose back out of DoTests

This commit is contained in:
jhoneill
2018-11-30 16:45:11 +00:00
committed by GitHub
parent eca631670c
commit 268d48ce3d

View File

@@ -9,7 +9,6 @@ param(
$PSVersionTable.PSVersion
$env:BUILD_ARTIFACTSTAGINGDIRECTORY
$VerbosePreference = "Continue"
## Create the zip before the tests run
## Otherwise the EPPlus.dll is in use after the Pester run
$ModuleVersion = (Get-Content -Raw .\ImportExcel.psd1) | Invoke-Expression | ForEach-Object ModuleVersion
@@ -29,4 +28,4 @@ $result = Invoke-Pester -Script $PSScriptRoot\__tests__ -Verbose -PassThru
if ($result.FailedCount -gt 0) {
throw "$($result.FailedCount) tests failed."
}
}