From f85f546f9f627e0f25492966d89bfbc79d69d957 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 5 Jun 2017 13:26:52 +0200 Subject: Add script to run UMD tests --- package.json | 2 +- scripts/test_umd.sh | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 scripts/test_umd.sh diff --git a/package.json b/package.json index 334f353dc..26ae8a504 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "build": "run-p build:*:prod", "lint": "tslint src/*.ts test/*.ts", "test": "run-s clean test:commonjs", - "test:umd": "run-s substitute_umd_bundle run_mocha; npm run clean", + "test:umd": "./scripts/test_umd.sh", "test:coverage": "nyc npm run test --all", "update_contracts": "for i in ${npm_package_config_artifacts}; do copyfiles -u 4 ../contracts/build/contracts/$i.json ../0x.js/src/artifacts; done;", "testrpc": "testrpc -p 8545 --networkId 50 -m \"${npm_package_config_mnemonic}\"", diff --git a/scripts/test_umd.sh b/scripts/test_umd.sh new file mode 100755 index 000000000..56517d32c --- /dev/null +++ b/scripts/test_umd.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# This script runs umd tests and cleans up after them while preserving the `return_code` for CI +# UMD tests should be only run after the commonjs build cause they reuse some of the commonjs build artefacts +run-s substitute_umd_bundle run_mocha +return_code=$? +npm run clean +exit $return_code -- cgit v1.2.3