ci: make sure msedge isn't running at end of woa test (#23332)

This commit is contained in:
John Kleinschmidt 2020-04-29 14:06:38 -04:00 committed by GitHub
parent ad1f341d7a
commit 088a8256f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,5 +88,6 @@ steps:
- powershell: |
Get-Process | Where Name Like "electron*" | Stop-Process
Get-Process | Where Name Like "MicrosoftEdge*" | Stop-Process
Get-Process | Where Name Like "msedge*" | Stop-Process
displayName: 'Kill processes left running from last test run'
condition: always()