diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-21 07:46:53 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-11-21 07:46:53 +0800 |
commit | cfcbf34305cf1dffeb677761138a93403d9b82be (patch) | |
tree | 1bc7cc1c01a70770ecedcd88e6c2cab055b1cab1 | |
parent | c4669013abe477e555745c10c16194d47f523f9e (diff) | |
download | dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.tar dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.tar.gz dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.tar.bz2 dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.tar.lz dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.tar.xz dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.tar.zst dexon-sol-tools-cfcbf34305cf1dffeb677761138a93403d9b82be.zip |
Fix test:circleci command
-rw-r--r-- | packages/0x.js/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/package.json b/packages/0x.js/package.json index 4fe11a8dc..36c3b8c8e 100644 --- a/packages/0x.js/package.json +++ b/packages/0x.js/package.json @@ -17,7 +17,7 @@ "docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --json $JSON_FILE_PATH $PROJECT_DIR", "upload_docs_json": "aws s3 cp docs/index.json $S3_URL --profile 0xproject --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type aplication/json", "lint": "tslint src/**/*.ts test/**/*.ts", - "test:circleci": "run-s test:coverage report_test_coverage; if [ $CIRCLE_BRANCH = \"development\" ]; then yarn test:umd; fi", + "test:circleci": "run-s test:coverage report_test_coverage && if [ $CIRCLE_BRANCH = \"development\" ]; then yarn test:umd; fi", "test": "run-s clean test:commonjs", "test:umd": "./scripts/test_umd.sh", "test:coverage": "nyc npm run test --all", |