fix other timeout issues in tests outside of core framework code

This commit is contained in:
Todd Baur 2017-03-08 23:41:16 +09:00
parent ac2a75791c
commit 026909aa91
3 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@ var web3 = EmbarkSpec.web3;
//describe("SimpleStorage", function() {
// before(function(done) {
// this.timeout(0);
// var contractsConfig = {
// "SimpleStorage": {
// args: [100, '0x123']

View File

@ -5,6 +5,7 @@ var web3 = EmbarkSpec.web3;
describe("SimpleStorage", function() {
before(function(done) {
this.timeout(0);
var contractsConfig = {
"SimpleStorage": {
args: [100]

View File

@ -120,7 +120,7 @@ Cmd.prototype.test = function() {
.command('test')
.description('run tests')
.action(function() {
shelljs.exec('mocha test/ --no-timeouts');
shelljs.exec('mocha test');
});
};