Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Added missing function(){} wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Oct 21, 2014
1 parent 72985d9 commit bd967fe
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ function compileWithout3D(callback) {
}

compileWith3D(
errorCheckThen(
errorCheckThen(function() {
compileWithout3D(
errorCheckThen(
function() { process.exit(0); }))));
errorCheckThen(function() {
process.exit(0);
})
)
})
);

0 comments on commit bd967fe

Please sign in to comment.