Skip to content

Commit d925c88

Browse files
author
James Brundage
committed
fix: PSJekyll Tests ( Fixes #54 )
Fixing installation header, using Stop-Job.
1 parent e26978a commit d925c88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PSJekyll.tests.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ describe PSJekyll {
22
beforeAll {
33
$jekyllInPath = $ExecutionContext.SessionState.InvokeCommand.GetCommand('jekyll', 'Application')
44
if (-not $jekyllInPath -and $env:GITHUB_WORKFLOW) {
5-
"::group::Installing FFMpeg" | Out-Host
5+
"::group::Installing prerequites" | Out-Host
66
sudo apt update | Out-Host
77
sudo apt install ruby-full bundler -y | Out-Host
88
sudo gem install jekyll | Out-Host
@@ -50,7 +50,7 @@ describe PSJekyll {
5050
$aPageOutput.OuterXml | Should -Match "$([DateTime]::now.ToString('yyyy-MM-dd'))"
5151
}
5252
Pop-Location
53-
Get-Job | Stop-PSJekyll
53+
Get-Job | Stop-Job
5454
Get-Job | Remove-Job
5555
Remove-Item -Recurse -Force $siteName
5656
}

0 commit comments

Comments
 (0)