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.
|
@echo off |
|
|
|
REM Windows script for running e2e tests |
|
REM You have to run server and capture some browser first |
|
REM |
|
REM Requirements: |
|
REM - NodeJS (http://nodejs.org/) |
|
REM - Karma (npm install -g karma) |
|
|
|
set BASE_DIR=%~dp0 |
|
karma start "%BASE_DIR%\..\config\karma-e2e.conf.js" %*
|
|
|