Skip to content

Commit fb2e5a4

Browse files
author
Erin Altenhof-Long
committed
test(select): add test against updating selected property on digest with no change event
Commit dc149de was reverted to fix regressions angular#7715 and angular#7855. This commit introduced this test case and a corresponding fix for preventing the update of the selected property of an option element on a digest with no change event. Although the previous fix introduced regressions, the test covers a valid issue and should be included.
1 parent bfdaa24 commit fb2e5a4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

test/ng/directive/selectSpec.js

+21
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,27 @@ describe('select', function() {
733733
expect(sortedHtml(options[2])).toEqual('<option value="1">3</option>');
734734
});
735735

736+
it('should not update selected property of an option element on digest with no change event',
737+
function() {
738+
createSingleSelect();
739+
740+
scope.$apply(function() {
741+
scope.values = [{name: 'A'}, {name: 'B'}, {name: 'C'}];
742+
scope.selected = scope.values[0];
743+
});
744+
745+
var options = element.find('option');
746+
var optionToSelect = options.eq(1);
747+
748+
expect(optionToSelect.text()).toBe('B');
749+
750+
optionToSelect.prop('selected', true);
751+
scope.$digest();
752+
753+
expect(optionToSelect.prop('selected')).toBe(true);
754+
expect(scope.selected).toBe(scope.values[0]);
755+
});
756+
736757
describe('binding', function() {
737758

738759
it('should bind to scope value', function() {

0 commit comments

Comments
 (0)