| 123456789101112131415161718 |
- describe('handleWindowResize', function() {
- // not true
- /*
- xdescribe('When default is used, should fire resize event', function() {
- it('should fire resize', function() {
- var resized = 0;
- initCalendar({
- windowResize: function(view) {
- resized++;
- }
- });
- expect(resized).toEqual(1);
- });
- });
- */
- })
|