From f4ef1af4a1843f180963081cd5085efbaa5e2657 Mon Sep 17 00:00:00 2001 From: Todd Baur Date: Wed, 8 Mar 2017 23:56:00 +0900 Subject: [PATCH] fixed failing timeouts in abi tests --- Gruntfile.coffee | 3 +-- test/abi.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index b3eb1166..f645af42 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -21,8 +21,7 @@ module.exports = (grunt) -> mochaTest: test: src: ['test/**/*.js'] - options: - timeout: 0 + jshint: all: ['bin/embark', 'lib/**/*.js', 'js/mine.js', 'js/embark.js'] diff --git a/test/abi.js b/test/abi.js index 4d2533ba..e54798b2 100644 --- a/test/abi.js +++ b/test/abi.js @@ -5,7 +5,7 @@ var assert = require('assert'); // TODO: instead 'eval' the code with a fake web3 object // and check the generate code interacts as expected describe('embark.ABIGenerator', function() { - + this.timeout(0); describe('#generateProvider', function() { var generator = new ABIGenerator({blockchainConfig: {rpcHost: 'somehost', rpcPort: '1234'}, contractsManager: {}});