increased how long the import should take

This commit is contained in:
dfinke
2018-06-08 11:17:22 -04:00
parent ab6bc327e8
commit 9b306458e4

View File

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