mirror of https://github.com/embarklabs/embark.git
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() {
|
//describe("SimpleStorage", function() {
|
||||||
// before(function(done) {
|
// before(function(done) {
|
||||||
|
// this.timeout(0);
|
||||||
// var contractsConfig = {
|
// var contractsConfig = {
|
||||||
// "SimpleStorage": {
|
// "SimpleStorage": {
|
||||||
// args: [100, '0x123']
|
// args: [100, '0x123']
|
||||||
|
|
|
@ -5,6 +5,7 @@ var web3 = EmbarkSpec.web3;
|
||||||
|
|
||||||
describe("SimpleStorage", function() {
|
describe("SimpleStorage", function() {
|
||||||
before(function(done) {
|
before(function(done) {
|
||||||
|
this.timeout(0);
|
||||||
var contractsConfig = {
|
var contractsConfig = {
|
||||||
"SimpleStorage": {
|
"SimpleStorage": {
|
||||||
args: [100]
|
args: [100]
|
||||||
|
|
|
@ -120,7 +120,7 @@ Cmd.prototype.test = function() {
|
||||||
.command('test')
|
.command('test')
|
||||||
.description('run tests')
|
.description('run tests')
|
||||||
.action(function() {
|
.action(function() {
|
||||||
shelljs.exec('mocha test/ --no-timeouts');
|
shelljs.exec('mocha test');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue