Add some more tests to be completed later.

This commit is contained in:
André Cruz
2013-04-23 00:57:08 +01:00
parent 8c3446fb1f
commit b872f90365
3 changed files with 34 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ GitResolver.prototype._findResolution = function (target) {
return this._findResolution('master');
}
// Find the highest one that satifies the target
// Find the highest one that satisfies the target
var version = mout.array.find(versions, function (version) {
return semver.satisfies(version, target);
}, this);