2020-12-17 09:52:09 +03:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
################################################################################
|
|
|
|
|
## File: invoke-tests.sh
|
|
|
|
|
## Desc: Helper function for invoking tests
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2020-12-30 09:57:11 +03:00
|
|
|
pwsh -Command "Import-Module '$HELPER_SCRIPTS/Tests.Helpers.psm1' -DisableNameChecking
|
|
|
|
|
Invoke-PesterTests -TestFile \"$1\" -TestName \"$2\""
|