mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-23 11:43:53 +00:00
11 lines
355 B
PowerShell
11 lines
355 B
PowerShell
Import-Module $PSScriptRoot\..\..\ImportExcel.psd1 -Force
|
|
|
|
Describe "Tests Import-Excel Timings" -Tag Timing {
|
|
It "Should read the 20k xlsx in -le 2100 milliseconds" {
|
|
$timer = Measure-Command {
|
|
$null = Import-Excel $PSScriptRoot\Rows20k.xlsx
|
|
}
|
|
|
|
$timer.TotalMilliseconds | Should -BeLessOrEqual 2100
|
|
}
|
|
} |