diff --git a/__tests__/levels.spec.js b/__tests__/levels.spec.js index e4e3fa91..5a6f3720 100644 --- a/__tests__/levels.spec.js +++ b/__tests__/levels.spec.js @@ -7,7 +7,6 @@ describe('GitEngine Levels', function() { var levels = sequences[sequenceKey]; Object.keys(levels).forEach(function(index) { var levelBlob = levels[index]; - // console.log('testing level', levelBlob.name.en_US); base.expectLevelSolved(levelBlob); }.bind(this)); }); diff --git a/gulpfile.js b/gulpfile.js index 87fb0fcb..76d68861 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -39,10 +39,8 @@ var indexFile = readFileSync('src/template.index.html').toString(); var indexTemplate = _.template(indexFile); var compliments = [ - 'Wow peter great work!', - 'Such a professional dev environment', - 'Can\'t stop the TRAIN', - 'git raging' + 'Thanks to Hongarc for the modern and amazing gulp workflow!', + 'I hope you all have a great day :)' ]; var compliment = (done) => { var index = Math.floor(Math.random() * compliments.length);