diff options
author | Igor Minar | 2013-07-11 11:11:35 -0700 |
---|---|---|
committer | Igor Minar | 2013-07-11 11:11:35 -0700 |
commit | 03216760ec858f3257e4e009a40f7f9a62b41510 (patch) | |
tree | 2122e917d2b0bbcc2bd3dea38e2687d0f26fb002 /test/ng/directive/inputSpec.js | |
parent | de4b048b4914c8c5b8d4f68a6a06f713fdf1c22d (diff) | |
download | angular.js-03216760ec858f3257e4e009a40f7f9a62b41510.tar.bz2 |
test(ngList): remove disabled test
this test fails and we don't have intentions on making it pass since
we never made a commitment to implement this feature.
Diffstat (limited to 'test/ng/directive/inputSpec.js')
-rw-r--r-- | test/ng/directive/inputSpec.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 5e1b26af..86fad41a 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -990,14 +990,6 @@ describe('input', function() { }); - xit('should require at least one item', function() { - compileInput('<input type="text" ng-model="list" ng-list required />'); - - changeInputValueTo(' , '); - expect(inputElm).toBeInvalid(); - }); - - it('should convert empty string to an empty array', function() { compileInput('<input type="text" ng-model="list" ng-list />'); |