doc(changelog): cleans up markdown for breaking changes (#9739)

This commit is contained in:
caleb 2016-06-30 17:31:39 -07:00 committed by Victor Berchet
parent afb72164e4
commit 119794249b
1 changed files with 5 additions and 2 deletions

View File

@ -124,14 +124,17 @@
stringifyElement, stringifyElement,
expect (and custom matchers for Jasmine) expect (and custom matchers for Jasmine)
``` ```
* testing: Before: * testing:
Before:
expect(...).toThrowErrorWith(msg); expect(...).toThrowErrorWith(msg);
After: After:
expect(...).toThrowError(msg); expect(...).toThrowError(msg);
* testing: Before:
Before:
expect(...).toMatchPattern(pattern); expect(...).toMatchPattern(pattern);