fixed failing timeouts in abi tests

This commit is contained in:
Todd Baur 2017-03-08 23:56:00 +09:00
parent 2de9292bd6
commit f4ef1af4a1
2 changed files with 2 additions and 3 deletions

View File

@ -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']

View File

@ -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: {}});