chore(tests): add single run mode
Showing
.travis.yml
0 → 100644
... | @@ -7,11 +7,12 @@ | ... | @@ -7,11 +7,12 @@ |
"docker-build": "docker build -t ng2-quickstart .", | "docker-build": "docker build -t ng2-quickstart .", | ||
"docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart", | "docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart", | ||
"pree2e": "npm run webdriver:update", | "pree2e": "npm run webdriver:update", | ||
"e2e": "tsc && concurrently \"http-server\" \"protractor protractor.config.js\"", | "e2e": "tsc && concurrently \"http-server -s\" \"protractor protractor.config.js\" --kill-others --success first", | ||
"lint": "tslint ./app/**/*.ts -t verbose", | "lint": "tslint ./app/**/*.ts -t verbose", | ||
"lite": "lite-server", | "lite": "lite-server", | ||
"postinstall": "typings install", | "postinstall": "typings install", | ||
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"", | "test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"", | ||
"test-once": "tsc && karma start karma.conf.js --single-run", | |||
"tsc": "tsc", | "tsc": "tsc", | ||
"tsc:w": "tsc -w", | "tsc:w": "tsc -w", | ||
"typings": "typings", | "typings": "typings", | ||
... | @@ -42,7 +43,7 @@ | ... | @@ -42,7 +43,7 @@ |
"bootstrap": "^3.3.6" | "bootstrap": "^3.3.6" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"concurrently": "^2.0.0", | "concurrently": "^2.2.0", | ||
"lite-server": "^2.2.0", | "lite-server": "^2.2.0", | ||
"typescript": "^1.8.10", | "typescript": "^1.8.10", | ||
"typings": "^1.0.4", | "typings": "^1.0.4", | ||
... | ... |
Please register or sign in to comment