mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-25 20:40:36 +03:00
14 lines
209 B
PowerShell
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 |