| Index: src/site/articles/dart-unit-tests/index.markdown
|
| diff --git a/src/site/articles/dart-unit-tests/index.markdown b/src/site/articles/dart-unit-tests/index.markdown
|
| index f532ed7cc0413ee37d1c84a359eb57e5efcf2477..dad00f05005678e48ea6395331a99b254b2a4e0c 100644
|
| --- a/src/site/articles/dart-unit-tests/index.markdown
|
| +++ b/src/site/articles/dart-unit-tests/index.markdown
|
| @@ -441,9 +441,12 @@ So for example we can write:
|
| expect(()=> throw new NullPointerException(),
|
| throwsNullPointerException));
|
|
|
| -<aside class="note">
|
| -<b>Note:</b> these type matchers (`isInstance` and `throwsA` plus its variants) currently
|
| -work in the Dart VM only; they do not work in Dart compiled to Javascript.
|
| +<aside>
|
| + <div class="alert alert-info">
|
| + <strong>Note:</strong>
|
| + These type matchers (`isInstance` and `throwsA` plus its variants) currently
|
| + work in the Dart VM only; they do not work in Dart compiled to Javascript.
|
| + </div>
|
| </aside>
|
|
|
| For matching the inner content of compound objects, we have a number of matchers, starting with the ubiquitous `equals()`:
|
|
|