run server from main shell; install browsers before tests

This commit is contained in:
Greg Gauthier 2023-01-19 16:44:53 +00:00
parent cd08669021
commit b8b98f0c54
1 changed files with 2 additions and 1 deletions

View File

@ -9,11 +9,12 @@ pipelines:
- dotnetcore - dotnetcore
script: script:
- cd MyWebApp - cd MyWebApp
- sh dotnet run & - dotnet run &
- step: - step:
name: Run the Playwright Tests name: Run the Playwright Tests
caches: caches:
- dotnetcore - dotnetcore
script: script:
- cd PlaywrightTests - cd PlaywrightTests
- pwsh bin/Debug/net7.0/playwright.ps1 install
- dotnet test - dotnet test