Skip to content

Commit

Permalink
Merge pull request #4 from tai2/increase-timeout
Browse files Browse the repository at this point in the history
Thanks!
  • Loading branch information
kohei-takata committed Apr 26, 2015
2 parents 71fac1a + bc0d936 commit dc42125
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions exercises/CSS/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down
4 changes: 2 additions & 2 deletions exercises/State/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down
4 changes: 2 additions & 2 deletions exercises/components/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down
4 changes: 2 additions & 2 deletions exercises/hello_react/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down
4 changes: 2 additions & 2 deletions exercises/propTypes/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down
4 changes: 2 additions & 2 deletions exercises/props/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down
4 changes: 2 additions & 2 deletions exercises/props_from_server/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ exercise.addProcessor(function (mode, callback) {
this.solutionStdout = through2();
}

setTimeout(query.bind(this, mode), 500);
setTimeout(query.bind(this, mode), 1000);

process.nextTick(function () {
callback(null, true)
});
});

// delayed for 500ms to wait for servers to start so we can start
// delayed for 1000ms to wait for servers to start so we can start
// playing with them
function query (mode) {
var exercise = this
Expand Down

0 comments on commit dc42125

Please sign in to comment.