ConceptPortal-public/scripts/dev/RunE2ETests.ps1
2025-03-06 21:34:02 +03:00

14 lines
209 B
PowerShell

# Run tests
$frontend = Resolve-Path -Path "$PSScriptRoot\..\..\rsconcept\frontend"
function RunTests() {
TestFrontend
}
function TestFrontend() {
Set-Location $frontend
& npm run test:e2e
}
RunTests