8 lines
93 B
Batchfile
8 lines
93 B
Batchfile
|
@echo off
|
||
|
|
||
|
if "%1" neq "" (
|
||
|
npm run singletest %1 %2
|
||
|
) else (
|
||
|
npm run paralleltest
|
||
|
)
|