mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
refactor(binder): replace jested assertions with jasmine
This commit is contained in:
parent
b6f61a89cf
commit
58d6da556a
1 changed files with 1 additions and 3 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue