diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-14 01:52:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-14 01:52:08 +0800 |
commit | 58a318b754c3d3d854e36f4b56b37f7de8c0913a (patch) | |
tree | d8e3e52fe55e1c3c4e90299708fa8197f9b2002e /packages/0x.js/scripts/test_umd.sh | |
parent | a74ec0effa818a86233fe64cb0dad2c61bbb4bb6 (diff) | |
parent | ff07f490025447ff11bbdb68ef46304e981f5696 (diff) | |
download | dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.gz dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.bz2 dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.lz dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.xz dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.tar.zst dexon-sol-tools-58a318b754c3d3d854e36f4b56b37f7de8c0913a.zip |
Merge pull request #214 from 0xProject/monoRepo
Switch over to Lerna + Yarn Workspaces setup for a mono-repo approach
Diffstat (limited to 'packages/0x.js/scripts/test_umd.sh')
-rwxr-xr-x | packages/0x.js/scripts/test_umd.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/0x.js/scripts/test_umd.sh b/packages/0x.js/scripts/test_umd.sh new file mode 100755 index 000000000..d200c76d0 --- /dev/null +++ b/packages/0x.js/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 only be run after building the commonjs because they reuse some of the commonjs build artifacts +run-s substitute_umd_bundle run_mocha +return_code=$? +npm run clean +exit $return_code |