chore(changelog): add interface and i18n types, update tests

This adds extra types that Angular doesn't use. "interface" is for
frontend related changes etc. "i18n" means internationalization and
refers to translations, etc.

Fixes #2622.
This commit is contained in:
Cole Gleason
2014-01-28 16:30:59 -06:00
parent 2a91cee0ff
commit c781f46d53
2 changed files with 6 additions and 2 deletions

View File

@@ -34,6 +34,8 @@ describe('validate-commit-msg.js', function() {
expect(m.validateMessage('chore(*): something')).toBe(VALID);
expect(m.validateMessage('chore(guide/location): something')).toBe(VALID);
expect(m.validateMessage('revert(foo): something')).toBe(VALID);
expect(m.validateMessage('i18n(translate): something')).toBe(VALID);
expect(m.validateMessage('interface(ui-change): something')).toBe(VALID);
expect(errors).toEqual([]);
});