chore(changelog): change max commit message length back to 999 (sorry, @lefnire!

This commit is contained in:
Cole Gleason
2014-01-28 16:37:19 -06:00
parent cfb776858b
commit 5d6cdcfa82
2 changed files with 1 additions and 9 deletions

View File

@@ -40,14 +40,6 @@ describe('validate-commit-msg.js', function() {
});
it('should validate 100 characters length', function() {
var msg = "fix($compile): something super mega extra giga tera long, maybe even longer and longer and longer... ";
expect(m.validateMessage(msg)).toBe(INVALID);
expect(errors).toEqual(['INVALID COMMIT MSG: is longer than 100 characters !']);
});
it('should validate "<type>(<scope>): <subject>" format', function() {
var msg = 'not correct format';