ConceptPortal-public/scripts/dev/RunE2ETests.ps1
Ivan 54472ef0b1
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
R: Improve test runner system and vite config
2025-03-01 22:00:55 +03:00

14 lines
208 B
PowerShell

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