Skip to content

Commit

Permalink
lib: use workshopper-wrappedexec instead of forked one
Browse files Browse the repository at this point in the history
  • Loading branch information
watilde committed Mar 27, 2017
1 parent 0859100 commit e65e7fe
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion exercises/always_async/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion exercises/fulfill_a_promise/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');

var THRESHOLD = 100;
Expand Down
2 changes: 1 addition & 1 deletion exercises/multiple_promises/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');
var rnd = require('random-word');

Expand Down
2 changes: 1 addition & 1 deletion exercises/promise_after_promise/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');
var rnd = require('random-word');

Expand Down
2 changes: 1 addition & 1 deletion exercises/reject_a_promise/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');
var timer = require('workshopper-timer');

var THRESHOLD = 100;
Expand Down
2 changes: 1 addition & 1 deletion exercises/shortcuts/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var path = require('path');
var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion exercises/to_reject_or_not_to_reject/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion exercises/values_and_promises/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var exercise = require('workshopper-exercise')();
var filecheck = require('workshopper-exercise/filecheck');
var execute = require('workshopper-exercise/execute');
var comparestdout = require('workshopper-exercise/comparestdout');
var wrappedexec = require('@timothygu/workshopper-wrappedexec');
var wrappedexec = require('workshopper-wrappedexec');

// checks that the submission file actually exists
exercise = filecheck(exercise);
Expand Down
2 changes: 1 addition & 1 deletion promise-it-wont-hurt.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict';

var workshopper = require('@timothygu/workshopper');
var workshopper = require('workshopper');
var path = require('path');

var fpath = path.join.bind(null, __dirname);
Expand Down

0 comments on commit e65e7fe

Please sign in to comment.