diff --git a/packages/order-watcher/test/order_watcher_test.ts b/packages/order-watcher/test/order_watcher_test.ts index d272c7fa45..051c3121a9 100644 --- a/packages/order-watcher/test/order_watcher_test.ts +++ b/packages/order-watcher/test/order_watcher_test.ts @@ -175,10 +175,14 @@ describe('OrderWatcher', () => { }); }); describe('tests with cleanup', async () => { + beforeEach(async () => { + await blockchainLifecycle.startAsync(); + }); afterEach(async () => { orderWatcher.unsubscribe(); const orderHash = orderHashUtils.getOrderHashHex(signedOrder); orderWatcher.removeOrder(orderHash); + await blockchainLifecycle.revertAsync(); }); it('should emit orderStateInvalid when makerAddress allowance set to 0 for watched order', (done: DoneCallback) => { (async () => {