mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 20:26:49 +00:00
* add tests for cli tools to pester * small fix * remove extra commenting * resolve issues * fix vercel test * remove extra logging
13 lines
489 B
Bash
13 lines
489 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: invoke-tests.sh
|
|
## Desc: Helper function for invoking tests
|
|
################################################################################
|
|
|
|
invoke_tests() {
|
|
local TEST_FILE="$1"
|
|
local TEST_NAME="$2"
|
|
|
|
pwsh -Command "Import-Module '$HELPER_SCRIPTS/Tests.Helpers.psm1' -DisableNameChecking
|
|
Invoke-PesterTests -TestFile \"$TEST_FILE\" -TestName \"$TEST_NAME\""
|
|
} |