Quick followups to PR #657

This commit is contained in:
Peter Cottle 2020-03-29 15:57:55 -07:00
parent 57caf3dc09
commit 21cc5e7382
2 changed files with 2 additions and 5 deletions

View file

@ -7,7 +7,6 @@ describe('GitEngine Levels', function() {
var levels = sequences[sequenceKey]; var levels = sequences[sequenceKey];
Object.keys(levels).forEach(function(index) { Object.keys(levels).forEach(function(index) {
var levelBlob = levels[index]; var levelBlob = levels[index];
// console.log('testing level', levelBlob.name.en_US);
base.expectLevelSolved(levelBlob); base.expectLevelSolved(levelBlob);
}.bind(this)); }.bind(this));
}); });

View file

@ -39,10 +39,8 @@ var indexFile = readFileSync('src/template.index.html').toString();
var indexTemplate = _.template(indexFile); var indexTemplate = _.template(indexFile);
var compliments = [ var compliments = [
'Wow peter great work!', 'Thanks to Hongarc for the modern and amazing gulp workflow!',
'Such a professional dev environment', 'I hope you all have a great day :)'
'Can\'t stop the TRAIN',
'git raging'
]; ];
var compliment = (done) => { var compliment = (done) => {
var index = Math.floor(Math.random() * compliments.length); var index = Math.floor(Math.random() * compliments.length);