diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-29 22:10:34 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-29 22:10:34 +0800 |
commit | 19581429366909038a7a3fa21eef09d466c150e0 (patch) | |
tree | c3547c43f02c119798af6f15485d73be570392e7 | |
parent | 9008dfdcb1c42fabaf0ba713917c413386089891 (diff) | |
download | dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.tar dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.tar.gz dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.tar.bz2 dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.tar.lz dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.tar.xz dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.tar.zst dexon-sol-tools-19581429366909038a7a3fa21eef09d466c150e0.zip |
empty stubs array before next test runs
-rw-r--r-- | test/0x.js_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index 871e8c727..26684972f 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -165,6 +165,7 @@ describe('ZeroEx library', () => { afterEach(() => { // clean up any stubs after the test has completed _.each(stubs, s => s.restore()); + stubs = []; }); it ('Should return the correct ECSignature on TestPRC nodeVersion', async () => { const orderHash = '0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b0'; |