-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from pcottle/master
Getting latest changes
- Loading branch information
Showing
64 changed files
with
3,611 additions
and
2,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ index.html | |
# Vim swaps | ||
*.sw* | ||
|
||
# sed backups | ||
*.bak | ||
|
||
# Annoying mac stuff | ||
.DS_STORE | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
var base = require('./base'); | ||
|
||
describe('GitEngine Levels', function() { | ||
it('solves levels', function() { | ||
var sequences = require('../src/levels/index').levelSequences; | ||
Object.keys(sequences).forEach(function(sequenceKey) { | ||
var levels = sequences[sequenceKey]; | ||
Object.keys(levels).forEach(function(index) { | ||
var levelBlob = levels[index]; | ||
var sequences = require('../src/levels/index').levelSequences; | ||
Object.keys(sequences).forEach(function(sequenceKey) { | ||
var levels = sequences[sequenceKey]; | ||
Object.keys(levels).forEach(function(index) { | ||
var levelBlob = levels[index]; | ||
it('solves level ' + levelBlob['name']['en_US'] + ' in sequence ' + sequenceKey, function() { | ||
base.expectLevelSolved(levelBlob); | ||
}.bind(this)); | ||
}); | ||
}); | ||
}.bind(this)); | ||
}); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.