diff options
| author | Igor Minar | 2013-01-22 22:49:00 -0800 | 
|---|---|---|
| committer | Igor Minar | 2013-01-22 22:49:00 -0800 | 
| commit | 07a58dd7669431d33b61f8c3213c31eff744d02a (patch) | |
| tree | dfba035aba1829807b49992dc2545a4c9525e2ca /changelog.spec.js | |
| parent | ffe5e01584ec1c10930a9a01ce4cec2ec888966b (diff) | |
| download | angular.js-07a58dd7669431d33b61f8c3213c31eff744d02a.tar.bz2 | |
chore(changelog.js): improve the changelog script
Diffstat (limited to 'changelog.spec.js')
| -rw-r--r-- | changelog.spec.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/changelog.spec.js b/changelog.spec.js index 1d3b7fe8..595ed84d 100644 --- a/changelog.spec.js +++ b/changelog.spec.js @@ -34,10 +34,10 @@ describe('changelog.js', function() {            '13f31602f396bc269076ab4d389cfd8ca94b20ba\n' +            'feat(ng-list): Allow custom separator\n' +            'bla bla bla\n\n' + -          'Breaks first breaking change\nsomething else\n' + -          'Breaks another breaking change\n'); +          'BREAKING CHANGE: first breaking change\nsomething else\n' + +          'another line with more info\n'); -      expect(msg.breaks).toEqual(['first breaking change', 'another breaking change']); +      expect(msg.breaking).toEqual(' first breaking change\nsomething else\nanother line with more info\n');      });    });  }); | 
