Portal/scripts/dev/RunE2ETests.ps1

14 lines
208 B
PowerShell
Raw Normal View History

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