fix other timeout issues in tests outside of core framework code
This commit is contained in:
parent
ac2a75791c
commit
026909aa91
|
@ -5,6 +5,7 @@ var web3 = EmbarkSpec.web3;
|
|||
|
||||
//describe("SimpleStorage", function() {
|
||||
// before(function(done) {
|
||||
// this.timeout(0);
|
||||
// var contractsConfig = {
|
||||
// "SimpleStorage": {
|
||||
// args: [100, '0x123']
|
||||
|
|
|
@ -5,6 +5,7 @@ var web3 = EmbarkSpec.web3;
|
|||
|
||||
describe("SimpleStorage", function() {
|
||||
before(function(done) {
|
||||
this.timeout(0);
|
||||
var contractsConfig = {
|
||||
"SimpleStorage": {
|
||||
args: [100]
|
||||
|
|
|
@ -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');
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue