Consolidated ASP Classic MVC framework from best components
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

22 lignes
546B

  1. @echo off
  2. setlocal
  3. set "SCRIPT_DIR=%~dp0"
  4. set "RUNNER_URL=%~1"
  5. if "%RUNNER_URL%"=="" set "RUNNER_URL=http://localhost/tests-dev/run-all.asp"
  6. echo Syncing mirrored test web.config files...
  7. cscript //nologo "%SCRIPT_DIR%sync-webconfigs.vbs"
  8. if errorlevel 1 (
  9. echo Failed to sync mirrored test web.config files.
  10. exit /b 1
  11. )
  12. echo Opening test runner: %RUNNER_URL%
  13. start "" "%RUNNER_URL%"
  14. echo.
  15. echo If your tests app is served from a different URL, pass it as the first argument:
  16. echo tests\run-tests.cmd http://localhost:8085/run-all.asp

Powered by TurnKey Linux.