mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-20 00:10:26 +00:00
attempting to fix ie on jquery build failure
This commit is contained in:
parent
b96f736951
commit
ce49c361d7
1 changed files with 4 additions and 4 deletions
|
|
@ -363,12 +363,12 @@ describe("widget", function(){
|
|||
// childNodes[0] is repeater comment
|
||||
expect(scope.selection).toEqual(undefined);
|
||||
|
||||
click(element[0].childNodes[1]);
|
||||
expect(scope.selection).toEqual(0);
|
||||
click(element[0].childNodes[2]);
|
||||
expect(scope.selection).toEqual(1);
|
||||
|
||||
scope.selection = 1;
|
||||
scope.selection = 2;
|
||||
scope.$eval();
|
||||
expect(element[0].childNodes[2].selected).toEqual(true);
|
||||
expect(element[0].childNodes[3].selected).toEqual(true);
|
||||
});
|
||||
|
||||
it('should unroll select options before eval', function(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue