diff options
| author | Igor Minar | 2012-10-31 14:46:11 -0700 | 
|---|---|---|
| committer | Igor Minar | 2012-10-31 14:48:24 -0700 | 
| commit | 537e20065a7f4aa0346713a186e25cc819125fae (patch) | |
| tree | 7a39d1bd43a878c30da927d087cffec509186dbc /validate-commit-msg.spec.js | |
| parent | 97578b4dae3c941905978a707bc211c90387cddb (diff) | |
| download | angular.js-537e20065a7f4aa0346713a186e25cc819125fae.tar.bz2 | |
chore(validate-commit-msg): allow '/' in scope
Diffstat (limited to 'validate-commit-msg.spec.js')
| -rw-r--r-- | validate-commit-msg.spec.js | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/validate-commit-msg.spec.js b/validate-commit-msg.spec.js index 2ea3cf16..7483a9b0 100644 --- a/validate-commit-msg.spec.js +++ b/validate-commit-msg.spec.js @@ -31,6 +31,7 @@ describe('validate-commit-msg.js', function() {        expect(m.validateMessage('chore($controller): something')).toBe(VALID);        expect(m.validateMessage('chore(foo-bar): something')).toBe(VALID);        expect(m.validateMessage('chore(*): something')).toBe(VALID); +      expect(m.validateMessage('chore(guide/location): something')).toBe(VALID);        expect(errors).toEqual([]);      }); | 
