diff --git a/package.json b/package.json index 369198f0ad..0a5ce3e833 100644 --- a/package.json +++ b/package.json @@ -12,10 +12,15 @@ "coverage:http-api": "istanbul cover --print both -- _mocha tests/test-http-api/index.js", "test": "npm run test:node && npm run test:browser", "test:node": "npm run test:node:core && npm run test:node:http-api && npm run test:node:cli", + "test:node:teamcity": "npm run test:node:core:teamcity && npm run test:node:http-api:teamcity && npm run test:node:cli:teamcity", + "test:node:cli:teamcity": "mocha --reporter mocha-teamcity-reporter tests/test-cli/index.js", + "test:node:core:teamcity": "mocha --reporter mocha-teamcity-reporter tests/test-core/index.js", + "test:node:http-api:teamcity": "mocha --reporter mocha-teamcity-reporter tests/test-http-api/index.js", "test:node:cli": "mocha tests/test-cli/index.js", "test:node:core": "mocha tests/test-core/index.js", "test:node:http-api": "mocha tests/test-http-api/index.js", "test:browser": "karma start karma.conf.js", + "test:browser:teamcity": "karma start --reporters teamcity --colors false karma.conf.js", "test:core": "mocha tests/test-core/index.js", "test:cli": "mocha tests/test-cli/index.js" }, @@ -53,10 +58,12 @@ "karma-firefox-launcher": "^0.1.7", "karma-mocha": "^0.2.1", "karma-spec-reporter": "0.0.23", + "karma-teamcity-reporter": "^0.2.2", "karma-webpack": "^1.7.0", "local-storage-blob-store": "0.0.3", "lodash": "^4.0.0", "mocha": "^2.3.4", + "mocha-teamcity-reporter": "^1.0.0", "ncp": "^2.0.0", "nexpect": "^0.5.0", "pre-commit": "^1.1.2",