You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
it('should throw when repeat attribute has incorrect format ',function(){
289
+
expect(function(){
290
+
compileTemplate(
291
+
'<ui-select ng-model="selection.selected"> \
292
+
<ui-select-match></ui-select-match> \
293
+
<ui-select-choices repeat="incorrect format people"></ui-select-choices> \
294
+
</ui-select>'
295
+
);
296
+
}).toThrow(newError('[ui.select:iexp] Expected expression in form of \'_item_ in _collection_[ track by _id_]\' but got \'incorrect format people\'.'));
297
+
});
298
+
288
299
it('should throw when no ui-select-match found',function(){
0 commit comments