refactor(binder): replace jested assertions with jasmine

This commit is contained in:
Vojta Jina 2012-01-29 21:59:35 -08:00
parent b6f61a89cf
commit 58d6da556a

View file

@ -388,9 +388,7 @@ describe('Binder', function() {
$rootScope.name = "World";
$rootScope.$apply();
assertEquals(
'<pre>Hello World!</pre>',
sortedHtml(element));
expect(sortedHtml(element)).toBe('<pre>Hello World!</pre>');
}));
it('FillInOptionValueWhenMissing', inject(function($rootScope, $compile) {