Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 58d6da5

Browse files
committed
refactor(binder): replace jested assertions with jasmine
1 parent b6f61a8 commit 58d6da5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/BinderSpec.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -388,9 +388,7 @@ describe('Binder', function() {
388388
$rootScope.name = "World";
389389
$rootScope.$apply();
390390

391-
assertEquals(
392-
'<pre>Hello World!</pre>',
393-
sortedHtml(element));
391+
expect(sortedHtml(element)).toBe('<pre>Hello World!</pre>');
394392
}));
395393

396394
it('FillInOptionValueWhenMissing', inject(function($rootScope, $compile) {

0 commit comments

Comments
 (0)