aboutsummaryrefslogtreecommitdiffstats
path: root/validate-commit-msg.spec.js
diff options
context:
space:
mode:
authorIgor Minar2012-10-31 14:46:11 -0700
committerIgor Minar2012-10-31 14:47:59 -0700
commit7b52a976e1fdcccf05a90b6fdc66f41a65c78f3d (patch)
treea8fe26414387499a7482313538f39da84ffe686e /validate-commit-msg.spec.js
parent3a624a7ff5ac0f02ab4957af76c2f98c1596e232 (diff)
downloadangular.js-7b52a976e1fdcccf05a90b6fdc66f41a65c78f3d.tar.bz2
chore(validate-commit-msg): allow '/' in scope
Diffstat (limited to 'validate-commit-msg.spec.js')
-rw-r--r--validate-commit-msg.spec.js1
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([]);
});