Consolidated ASP Classic MVC framework from best components
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 line
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.