mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
14 lines
208 B
PowerShell
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
|