Skip to content

Commit

Permalink
fix(dx): Changed "test" script to do single run
Browse files Browse the repository at this point in the history
Devs can use the "test:local" script to run continuous tests during development

Also added the Travis CI build indicator to the README
  • Loading branch information
Daniel James committed Feb 14, 2017
1 parent ac7cd33 commit 88166af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Syncromatics Track API JavaScript Client

This is the JavaScript client for accessing the [Syncromatics Track API][track-api-docs].
This is the JavaScript client for accessing the [Syncromatics Track API][track-api-docs]. [![Build Status](https://travis-ci.org/syncromatics/syncromatics-track-api.svg?branch=master)](https://travis-ci.org/syncromatics/syncromatics-track-api)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"serve:docs": "documentation serve -f html -w src/index.js",
"build:docs": "documentation build -f html -o build/docs src/index.js",
"test": "karma start",
"test:ci": "karma start --reporters teamcity --single-run --fail-on-empty-test-suite",
"test:local": "karma start",
"test": "karma start --single-run --fail-on-empty-test-suite",
"prepublish": "webpack",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
Expand Down

0 comments on commit 88166af

Please sign in to comment.