up'd to 3 seconds for VSTS build servers

This commit is contained in:
dfinke
2018-07-16 12:46:57 -04:00
parent f3f48c5ffc
commit 26f60aac28

View File

@@ -21,12 +21,12 @@ Describe "Tests" {
$timer.TotalMilliseconds | should BeLessThan 2000
}
It "Should read larger xlsx, 4k rows 1 col < 2000 milliseconds" {
It "Should read larger xlsx, 4k rows 1 col < 3000 milliseconds" {
$timer = Measure-Command {
$null = Import-Excel $PSScriptRoot\LargerFile.xlsx
}
$timer.TotalMilliseconds | should BeLessThan 2000
$timer.TotalMilliseconds | should BeLessThan 3000
}
}