Consolidated ASP Classic MVC framework from best components
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

22 satır
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.