12 lines
298 B
PowerShell
12 lines
298 B
PowerShell
#requires -Version 7.0
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
Import-Module Pester -MinimumVersion 5.5.0
|
|
|
|
$config = New-PesterConfiguration
|
|
$config.Run.Path = $PSScriptRoot
|
|
$config.Run.Exit = $true
|
|
$config.Output.Verbosity = 'Detailed'
|
|
Invoke-Pester -Configuration $config
|