diff options
| author | Ken Sheedlo | 2013-08-13 15:30:52 -0700 |
|---|---|---|
| committer | Ken Sheedlo | 2013-08-15 13:23:18 -0700 |
| commit | 37123cd2858b4e318ed8109af745312df4848577 (patch) | |
| tree | 118abe5fd50e1c6fef4281972cf52c0162482fa8 /test/jqLiteSpec.js | |
| parent | fe267e30b95e8f48ddc670b97d485f18fb64d39e (diff) | |
| download | angular.js-37123cd2858b4e318ed8109af745312df4848577.tar.bz2 | |
feat(minerr): log minerr doc url in development
Closes #3566
Diffstat (limited to 'test/jqLiteSpec.js')
| -rw-r--r-- | test/jqLiteSpec.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/jqLiteSpec.js b/test/jqLiteSpec.js index 913e6192..79c0d0c6 100644 --- a/test/jqLiteSpec.js +++ b/test/jqLiteSpec.js @@ -900,15 +900,15 @@ describe('jqLite', function() { expect(function() { elm.on('click', anObj, callback); - }).toThrowMatching(/\[jqLite\:onargs\]/); + }).toThrowMinErr('jqLite', 'onargs'); expect(function() { elm.on('click', null, aString, callback); - }).toThrowMatching(/\[jqLite\:onargs\]/); + }).toThrowMinErr('jqLite', 'onargs'); expect(function() { elm.on('click', aValue, callback); - }).toThrowMatching(/\[jqLite\:onargs\]/); + }).toThrowMinErr('jqLite', 'onargs'); }); } |
